You've granted access to Hotot for Chrome!
66 | 67 |
69 | Next, return to Hotot for Chrome and enter this PIN to complete the authorization process:
70 | 0608448
71 |
├── README.md ├── core ├── images │ ├── mask.png │ ├── effect_bw.png │ ├── spinner_28.gif │ ├── buttons-hover.png │ ├── dark_panel_bg.png │ ├── effect_autumn.png │ ├── effect_beauty.png │ ├── effect_lomo.png │ ├── effect_normal.png │ ├── effect_purple.png │ ├── effect_sketch.png │ ├── effect_soften.png │ ├── grid_cell@2x.png │ ├── mono_icons@2x.png │ ├── service │ │ ├── gplus.png │ │ ├── weibo.png │ │ ├── twitter.png │ │ ├── facebook.png │ │ └── statusnet.png │ ├── side_shadow.png │ ├── effect_enhance.png │ ├── effect_lighten.png │ ├── effect_vintage.png │ ├── control_icons@2x.png │ ├── guide │ │ ├── add_slot_bg.png │ │ └── add_slot_bg@2x.png │ └── default_profile_image.jpg ├── icons │ ├── 22x22 │ │ └── apps │ │ │ └── hotot.png │ ├── 24x24 │ │ └── apps │ │ │ └── hotot.png │ └── 128x128 │ │ └── apps │ │ ├── hotot.ico │ │ └── hotot.png ├── partials │ ├── new_slot_building_page.html │ ├── new_slot_auth_page.html │ ├── new_slot_oauth_page.html │ ├── settings_advanced_page.html │ ├── settings_general_page.html │ └── settings_behavior_page.html ├── scripts │ ├── abs.column.coffee │ ├── serv.notify.coffee │ ├── util.tabs_frame.coffee │ ├── dialog.alert.coffee │ ├── proto.base.coffee │ ├── serv.app.coffee │ ├── serv.log.coffee │ ├── serv.columns_state.coffee │ ├── dialog.log.coffee │ ├── sandbox.coffee │ ├── serv.conn.coffee │ ├── lib.oauth2.coffee │ ├── hotot_app.coffee │ ├── ctrl.win.coffee │ ├── background.coffee │ ├── util.hotkey.coffee │ ├── ctrl.column_area.coffee │ ├── fake_source.coffee │ ├── interface.coffee │ ├── serv.cache.coffee │ ├── com.account_selector.coffee │ ├── angular.sanitize.js │ ├── serv.daemon.coffee │ ├── dialog.settings.coffee │ ├── lib.oauth1.coffee │ ├── ctrl.nav.coffee │ ├── dialog.profile.coffee │ ├── serv.settings.coffee │ ├── serv.relation.coffee │ ├── dialog.preview.coffee │ ├── dialog.new_slot.coffee │ ├── lib.sha1.js │ ├── util.column.coffee │ ├── dialog.message.coffee │ └── lib.base64.js ├── styles │ ├── dialog.alert.less │ ├── dialog.log.less │ ├── dialog.profile.less │ ├── new_slot.less │ ├── component.less │ ├── settings.less │ ├── dialog.preview.less │ ├── dialog.message.less │ ├── dialog.columns.less │ ├── dialog.people.less │ └── main.less ├── sandbox.html ├── manifest.json ├── dialogs │ ├── log.html │ ├── alert.html │ ├── preview.html │ ├── new_slot.html │ ├── profile.html │ ├── columns.html │ ├── settings.html │ ├── message.html │ └── compose.html ├── pin.html ├── login_b.html └── login_a.html └── Cakefile /README.md: -------------------------------------------------------------------------------- 1 | hotot3 2 | ====== 3 | -------------------------------------------------------------------------------- /core/images/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyricat/hotot3/HEAD/core/images/mask.png -------------------------------------------------------------------------------- /core/images/effect_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyricat/hotot3/HEAD/core/images/effect_bw.png -------------------------------------------------------------------------------- /core/images/spinner_28.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyricat/hotot3/HEAD/core/images/spinner_28.gif -------------------------------------------------------------------------------- /core/images/buttons-hover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyricat/hotot3/HEAD/core/images/buttons-hover.png -------------------------------------------------------------------------------- /core/images/dark_panel_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyricat/hotot3/HEAD/core/images/dark_panel_bg.png -------------------------------------------------------------------------------- /core/images/effect_autumn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyricat/hotot3/HEAD/core/images/effect_autumn.png -------------------------------------------------------------------------------- /core/images/effect_beauty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyricat/hotot3/HEAD/core/images/effect_beauty.png -------------------------------------------------------------------------------- /core/images/effect_lomo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyricat/hotot3/HEAD/core/images/effect_lomo.png -------------------------------------------------------------------------------- /core/images/effect_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyricat/hotot3/HEAD/core/images/effect_normal.png -------------------------------------------------------------------------------- /core/images/effect_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyricat/hotot3/HEAD/core/images/effect_purple.png -------------------------------------------------------------------------------- /core/images/effect_sketch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyricat/hotot3/HEAD/core/images/effect_sketch.png -------------------------------------------------------------------------------- /core/images/effect_soften.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyricat/hotot3/HEAD/core/images/effect_soften.png -------------------------------------------------------------------------------- /core/images/grid_cell@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyricat/hotot3/HEAD/core/images/grid_cell@2x.png -------------------------------------------------------------------------------- /core/images/mono_icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyricat/hotot3/HEAD/core/images/mono_icons@2x.png -------------------------------------------------------------------------------- /core/images/service/gplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyricat/hotot3/HEAD/core/images/service/gplus.png -------------------------------------------------------------------------------- /core/images/service/weibo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyricat/hotot3/HEAD/core/images/service/weibo.png -------------------------------------------------------------------------------- /core/images/side_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyricat/hotot3/HEAD/core/images/side_shadow.png -------------------------------------------------------------------------------- /core/icons/22x22/apps/hotot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyricat/hotot3/HEAD/core/icons/22x22/apps/hotot.png -------------------------------------------------------------------------------- /core/icons/24x24/apps/hotot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyricat/hotot3/HEAD/core/icons/24x24/apps/hotot.png -------------------------------------------------------------------------------- /core/images/effect_enhance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyricat/hotot3/HEAD/core/images/effect_enhance.png -------------------------------------------------------------------------------- /core/images/effect_lighten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyricat/hotot3/HEAD/core/images/effect_lighten.png -------------------------------------------------------------------------------- /core/images/effect_vintage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyricat/hotot3/HEAD/core/images/effect_vintage.png -------------------------------------------------------------------------------- /core/images/service/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyricat/hotot3/HEAD/core/images/service/twitter.png -------------------------------------------------------------------------------- /core/icons/128x128/apps/hotot.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyricat/hotot3/HEAD/core/icons/128x128/apps/hotot.ico -------------------------------------------------------------------------------- /core/icons/128x128/apps/hotot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyricat/hotot3/HEAD/core/icons/128x128/apps/hotot.png -------------------------------------------------------------------------------- /core/images/control_icons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyricat/hotot3/HEAD/core/images/control_icons@2x.png -------------------------------------------------------------------------------- /core/images/guide/add_slot_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyricat/hotot3/HEAD/core/images/guide/add_slot_bg.png -------------------------------------------------------------------------------- /core/images/service/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyricat/hotot3/HEAD/core/images/service/facebook.png -------------------------------------------------------------------------------- /core/images/service/statusnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyricat/hotot3/HEAD/core/images/service/statusnet.png -------------------------------------------------------------------------------- /core/images/guide/add_slot_bg@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyricat/hotot3/HEAD/core/images/guide/add_slot_bg@2x.png -------------------------------------------------------------------------------- /core/images/default_profile_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyricat/hotot3/HEAD/core/images/default_profile_image.jpg -------------------------------------------------------------------------------- /core/partials/new_slot_building_page.html: -------------------------------------------------------------------------------- 1 |
{{error_box.text}}
8 |9 | 10 |
11 |{{error_box.text}}
8 |9 | 10 |
11 |The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
28 |The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog. The quick brown fox jumps over the lazy dog.
29 |You've granted access to Hotot for Chrome!
66 | 67 |
69 | Next, return to Hotot for Chrome and enter this PIN to complete the authorization process:
70 | 0608448
71 |
No parameter.
52 |No parameter needed.
80 |83 | 84 | 85 |
86 |90 | 91 | 92 |
93 |
57 | Hotot for Chrome
58 | Hotot Client for Chrome(Chrome App)
77 | Hotot for Chrome
78 | Hotot Client for Chrome(Chrome App)