├── .gitignore ├── app ├── popup │ ├── popup.js │ └── popup.html ├── content-scripts │ ├── zoom │ │ └── zoom.js │ ├── uploadImg │ │ ├── sass │ │ │ └── uploadImg.scss │ │ └── uploadImg.js │ ├── collection │ │ └── collection.js │ ├── checkConversation │ │ ├── sass │ │ │ └── checkConversation.scss │ │ └── checkConversation.js │ ├── checkReply │ │ ├── jump.js │ │ └── insertCheckBtn.js │ └── signin │ │ └── signin.js ├── option │ ├── option.html │ └── option.js ├── settings │ └── settings.js └── background-scripts │ ├── background.js │ ├── uploadImg.js │ ├── setNotifications.js │ └── checkConversation.js ├── extension ├── icons │ ├── icon_128.png │ ├── icon_16.png │ ├── icon_19.png │ ├── icon_38.png │ └── icon_48.png ├── popup │ ├── popup.html │ └── popup.js ├── option │ ├── option.html │ └── option.js ├── content-scripts │ ├── collection │ │ └── collection.js │ ├── checkReply │ │ ├── jump.js │ │ └── insertCheckBtn.js │ ├── signin │ │ └── signin.js │ ├── zoom │ │ └── zoom.js │ ├── uploadImg │ │ └── uploadImg.js │ └── checkConversation │ │ └── checkConversation.js ├── manifest.json ├── manifest_with_comments.json └── background-scripts │ └── background.js ├── .babelrc ├── README.md ├── package.json ├── CHANGELOG.md ├── LICENSE ├── INTRO.md └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /app/popup/popup.js: -------------------------------------------------------------------------------- 1 | // popup.js -------------------------------------------------------------------------------- /extension/icons/icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lessfish/v2ex-helper/HEAD/extension/icons/icon_128.png -------------------------------------------------------------------------------- /extension/icons/icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lessfish/v2ex-helper/HEAD/extension/icons/icon_16.png -------------------------------------------------------------------------------- /extension/icons/icon_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lessfish/v2ex-helper/HEAD/extension/icons/icon_19.png -------------------------------------------------------------------------------- /extension/icons/icon_38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lessfish/v2ex-helper/HEAD/extension/icons/icon_38.png -------------------------------------------------------------------------------- /extension/icons/icon_48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lessfish/v2ex-helper/HEAD/extension/icons/icon_48.png -------------------------------------------------------------------------------- /app/popup/popup.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |