├── .gitignore ├── README-cn.md ├── README.md ├── art ├── 1.png ├── 2.png └── wxhelper-icons.sketch ├── bootstrap-sass.config.js ├── config.js ├── extension ├── _locales │ ├── en │ │ └── messages.json │ └── zh │ │ └── messages.json ├── app │ └── popup.html ├── img │ ├── icon_128x128.png │ ├── icon_16x16.png │ └── icon_48x48.png └── manifest.json ├── package.json ├── src ├── fonts │ ├── wxhelper-icons.eot │ ├── wxhelper-icons.svg │ ├── wxhelper-icons.ttf │ └── wxhelper-icons.woff ├── js │ ├── entries │ │ ├── app.js │ │ ├── background.js │ │ └── popup.js │ ├── node_modules │ │ ├── chrome │ │ │ ├── i18n.js │ │ │ └── local-cache.js │ │ ├── from-wechat │ │ │ └── tool.js │ │ ├── ut │ │ │ ├── ga-agent.js │ │ │ └── ga.js │ │ └── wxhelper │ │ │ ├── config.js │ │ │ ├── controller.js │ │ │ ├── template.js │ │ │ ├── ui.js │ │ │ └── wechat.js │ └── webpack-plugins │ │ └── auto-reload-extension.js ├── style │ ├── _bootstrap-customizations.scss │ ├── _pre-bootstrap-customizations.scss │ ├── app.scss │ ├── popup.scss │ └── wxhelper-icons.css └── templates │ ├── content.html │ ├── message.html │ └── popup.html └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | *.log 3 | .DS_Store 4 | dist 5 | output 6 | src/js/temp.js 7 | -------------------------------------------------------------------------------- /README-cn.md: -------------------------------------------------------------------------------- 1 | ## 微信助手 - Chrome 插件 2 | 3 | 1. 检查被谁删除 4 | 5 | 2. 检查黑名单 6 | 7 | 3. 支持大量好友 8 | 9 | ### 如何运行和调试 10 | 11 | > 微信助手 Chrome 插件开发手记 -- Chrome 插件开发参考: 12 | 13 | > http://www.liaohuqiu.net/cn/posts/wechat-helper/ 14 | 15 | 16 | 1. 安装依赖 17 | 18 | ``` 19 | npm install 20 | ``` 21 | 22 | 2. build 插件的 `content_scripts` 和 `background` 23 | 24 | ``` 25 | npm run build 26 | ``` 27 | 28 | 3. 另外一个终端,build 插件的 `popup`. 29 | 30 | ``` 31 | npm run build-popup 32 | ``` 33 | 34 | 4. 扩展管理里面,选中 `extension` 文件夹,加载扩展 35 | 36 | 从导航栏上图标点开网页版微信,插件会自动加载。 37 | 38 | 5. 代码修改后,自动会 build ,重新加载插件,刷新页面即可。 39 | 40 | 推荐使用 [Extensions Reloader](https://chrome.google.com/webstore/detail/extensions-reloader/fimgfedafeadlieiabdeeaodndnlbhid) + Spark 全局快捷键重新加载插件。 41 | 42 | 6. 支持 source-map 源码调试。 43 | 44 | > Happy coding! 45 | 46 | --- 47 | 48 | ### 使用方法 49 | 50 | 1. 安装 51 | 52 | 1. 从 Chrome 商店安装。 53 | 54 | https://chrome.google.com/webstore/detail/bdfbkchemknlpmmopkncahjdmocnambd/ 55 | 56 | 2. 本插件会频繁升级,暂不支持手动安装扩展。 57 | 58 | ~~**Windows版本** 也在开发中,即将发布。~~ 59 | 60 | **Windows 用户,请到这里**: [WeChat Helper -- Windows App](https://github.com/freedombird9/wechat-deletion-check) 61 | 62 | 2. 使用 63 | 64 | 1. 时间间隔设置为 **60** 秒以上 65 | 66 | 2. **如果提示操作过于频繁,请稍后再试,下次会跳过已经检查过的好友。** 67 | 68 | 69 | 3. 截图 70 | 71 |