├── .editorconfig ├── .github └── workflows │ └── crontab.yml ├── .gitignore ├── .jsbeautifyrc ├── LICENSE ├── README.md ├── bin └── track.js ├── formatted ├── index.html └── webwxApp.js ├── history-version.json ├── original ├── index.html └── webwxApp.js └── package.json /.editorconfig: -------------------------------------------------------------------------------- 1 | # Editor configuration, see http://editorconfig.org 2 | root = true 3 | 4 | [*] 5 | charset = utf-8 6 | indent_style = space 7 | indent_size = 2 8 | end_of_line = lf 9 | insert_final_newline = true 10 | trim_trailing_whitespace = true 11 | 12 | 13 | [*.md] 14 | max_line_length = 0 15 | trim_trailing_whitespace = false 16 | -------------------------------------------------------------------------------- /.github/workflows/crontab.yml: -------------------------------------------------------------------------------- 1 | name: "Track Webwx Update" 2 | on: 3 | push: 4 | schedule: 5 | - cron: 0 5 * * * 6 | 7 | jobs: 8 | build: 9 | name: Track 10 | runs-on: ubuntu-latest 11 | steps: 12 | - uses: actions/checkout@v2 13 | - name: Use Node.js 12 14 | uses: actions/setup-node@v1 15 | with: 16 | node-version: 12 17 | 18 | - name: Install Dependencies 19 | run: npm install 20 | 21 | - name: Track 22 | run: npm run track 23 | 24 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | 6 | # Runtime data 7 | pids 8 | *.pid 9 | *.seed 10 | 11 | # Directory for instrumented libs generated by jscoverage/JSCover 12 | lib-cov 13 | 14 | # Coverage directory used by tools like istanbul 15 | coverage 16 | 17 | # nyc test coverage 18 | .nyc_output 19 | 20 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 21 | .grunt 22 | 23 | # node-waf configuration 24 | .lock-wscript 25 | 26 | # Compiled binary addons (http://nodejs.org/api/addons.html) 27 | build/Release 28 | 29 | # Dependency directories 30 | node_modules 31 | jspm_packages 32 | 33 | # Optional npm cache directory 34 | .npm 35 | 36 | # Optional REPL history 37 | .node_repl_history 38 | package-lock.json 39 | -------------------------------------------------------------------------------- /.jsbeautifyrc: -------------------------------------------------------------------------------- 1 | { 2 | "indent_size": 2 3 | , "indent_char": " " 4 | , "eol": "\n" 5 | , "indent_level": 0 6 | , "indent_with_tabs": false 7 | , "preserve_newlines": true 8 | , "max_preserve_newlines": 10 9 | , "jslint_happy": false 10 | , "space_after_anon_function": false 11 | , "brace_style": "collapse" 12 | , "keep_array_indentation": false 13 | , "keep_function_indentation": false 14 | , "space_before_conditional": true 15 | , "break_chained_methods": true 16 | , "eval_code": false 17 | , "unescape_strings": false 18 | , "wrap_line_length": 250 19 | , "wrap_attributes": "force" 20 | , "wrap_attributes_indent_size": 4 21 | , "end_with_newline": true 22 | , "comma_first": true 23 | , "editorconfig": true 24 | } 25 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "{}" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright {yyyy} {name of copyright owner} 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # webwx-app-tracker 2 | 3 | webwxApp SPA Html & AngularJS Script Tracker for Web Wechat 4 | 5 | ## Introduction 6 | 7 | The purpose of creating this repository is to track the code change from https://wx.qq.com , which can make the [PuppetWeb of Wechaty](https://github.com/wechaty/wechaty-puppet-puppeteer) life easier in the future. 8 | 9 | What it is doing is: 10 | 11 | 1. Save HTML to `original/index.html` 12 | 1. Save AngularJs JavaScript to `original/wxwebApp.js` 13 | 1. Format the above two files, and save them to `formatted/` 14 | 1. Check wether there has any update 15 | 1. Commit to Git Repository and use js file name as commit message(if updated) 16 | 17 | ## Case Study 18 | 19 | I have a webwxApp.js which was saved on May 2016, about 5 months ago before I setup this tracker. 20 | 21 | 1. After I finished this tracker, I got a diff on webwxApp between version May to Nov, you can see, there's no much change at the past half year: 22 | 23 | 24 | 25 | 1. However there was a new little bug introduced in, it's a typo of `API_webwxsendmsgvedio`: 26 | 27 | 28 | 29 | Enjoy it! 30 | 31 | ## Quick Start 32 | 33 | Open https://github.com/wechaty/webwx-app-tracker/commits/master/formatted/webwxApp.js to know the day to day change of web wechat app code. 34 | 35 | Or clone this repository on github, then run on your own machine. 36 | 37 | ## Cron 38 | 39 | I put `npm run track` to my crontab with the following setting:(run every hour) 40 | 41 | ```shell 42 | huan@dev:~/git/webwx-app-tracker$ crontab -l 43 | 1 * * * * (date && cd ~/git/webwx-app-tracker && npm run -s track >> /tmp/webwx-app-tracker.log 2>&1) 44 | ``` 45 | 46 | P.S. You need to use Github Personal Token to enable push in crontab: 47 | 48 | * 49 | 50 | Any suggestion is welcome. 51 | 52 | ## See Also 53 | 54 | * [网页QQ/微信/新浪微博等重要文件监控,方便发现文件变动,及时更新相关项目](https://github.com/sjdy521/Mojo-URLMonitor) 55 | 56 | ## History 57 | 58 | ### v0.2 Nov 2020 59 | 60 | Use GitHub Actions to replace crontab 61 | 62 | ### v0.1 Nov 2016 63 | 64 | Use crontab to run `npm run track` 65 | 66 | ## Author 67 | 68 | [Huan](https://github.com/huan) [(李卓桓)](http://linkedin.com/in/zixia), Tencent TVP of Chatbot 69 | 70 | [![Profile of Huan LI (李卓桓) on StackOverflow](https://stackoverflow.com/users/flair/1123955.png)](https://stackoverflow.com/users/1123955/huan) 71 | 72 | ## Copyright & License 73 | 74 | * Code & Docs © 2016-now Wechaty Community Contributors 75 | * Code released under the Apache-2.0 License 76 | * Docs released under Creative Commons 77 | -------------------------------------------------------------------------------- /bin/track.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env nodejs 2 | 3 | /** 4 | * webwxApp SPA Html & AngularJS Script Tracker for Web Wechat 5 | * https://github.com/wechaty/webwx-app/ 6 | * 7 | */ 8 | const { execSync } = require('child_process') 9 | const { writeFileSync } = require('fs') 10 | const { format } = require('util') 11 | 12 | const VERSION_HISTORY = 'history-version.json' 13 | const versionHistory = require('../' + VERSION_HISTORY) 14 | 15 | function get(url) { 16 | return execSync('curl -s ' + url) 17 | .toString() 18 | } 19 | 20 | function getJsUrl(html) { 21 | // 2016: 22 | // 201702: ', 'i') 24 | const match = re.exec(html) 25 | if (!match) { 26 | return null 27 | } 28 | return match[1] 29 | } 30 | 31 | function getJsVer(url) { 32 | // res.wx.qq.com/a/wx_fed/webwx/res/static/js/index_0c7087d.js 33 | const re = /index_(.+?)\.js/i 34 | const match = re.exec(url) 35 | if (!match) { 36 | throw new Error('no version') 37 | } 38 | return match[1] 39 | } 40 | 41 | function htmlBeautify(file) { 42 | return execSync('html-beautify ' + file) 43 | .toString() 44 | } 45 | 46 | function jsBeautify(file) { 47 | return execSync('js-beautify ' + file) 48 | .toString() 49 | } 50 | 51 | function gitDiff() { 52 | const n = execSync('git diff --name-only | wc -l') 53 | .toString() 54 | .replace(/\n/, '') 55 | return n > 0 56 | } 57 | 58 | function gitCommit(message) { 59 | execSync('git -c "user.name=Mike BO" -c "user.email=mike@zixia.net" commit -am "' + message + '"') 60 | } 61 | 62 | function gitPull() { 63 | execSync('git pull') // hide token for output 64 | } 65 | 66 | function gitPush() { 67 | execSync('git push') // hide token for output 68 | } 69 | 70 | function log(message) { 71 | const now = new Date(); 72 | 73 | let min = now.getMinutes() 74 | let sec = now.getSeconds() 75 | let hour = now.getHours() 76 | 77 | let date = now.getDate() 78 | let month = now.getMonth() + 1 79 | 80 | if (sec < 10) { sec = '0' + sec } 81 | if (min < 10) { min = '0' + min } 82 | if (hour < 10) { hour = '0' + hour } 83 | 84 | if (date < 10) { date = '0' + date } 85 | if (month < 10) { month = '0' + month } 86 | 87 | const desc = format('%s-%s-%s %s:%s:%s ' 88 | , now.getFullYear() 89 | , (now.getMonth() + 1) 90 | , date 91 | , hour 92 | , min 93 | , sec 94 | ) 95 | 96 | console.log(desc + format.apply(null, arguments)) 97 | } 98 | 99 | async function main () { 100 | gitPull() 101 | 102 | const html = get('https://wx.qq.com') 103 | const jsUrl = getJsUrl(html) 104 | const jsVer = getJsVer(jsUrl) 105 | const js = get(jsUrl) 106 | 107 | const originalHtmlFile = 'original/index.html' 108 | const originalJsFile = 'original/webwxApp.js' 109 | 110 | const formattedHtmlFile = 'formatted/index.html' 111 | const formattedJsFile = 'formatted/webwxApp.js' 112 | 113 | writeFileSync(originalHtmlFile , html) 114 | writeFileSync(originalJsFile , js) 115 | 116 | writeFileSync(formattedHtmlFile , htmlBeautify(originalHtmlFile)) 117 | writeFileSync(formattedJsFile , jsBeautify(originalJsFile)) 118 | 119 | if (!gitDiff()) { 120 | log('nothing new; current: %s', jsVer) 121 | return 122 | } 123 | 124 | /** 125 | * check jsVer 126 | */ 127 | if (!jsVer) { 128 | log('jsVer empty') 129 | return 130 | } 131 | 132 | if (jsVer in versionHistory) { 133 | const latestVer = versionHistory['latest'] 134 | 135 | if (latestVer === jsVer) { 136 | log('jsVer is the latest, but local has gitDiff()') 137 | } else { 138 | const latestVerDate = versionHistory[latestVer] 139 | jsVerDate = versionHistory[jsVer] 140 | 141 | log('jsVer found %s[%s] latest %s[%s]. maybe Fifty Shades of Grey?' 142 | , jsVer, jsVerDate 143 | , latestVer, latestVerDate 144 | ) 145 | return 146 | } 147 | } else { 148 | 149 | /** 150 | * Save new version to history json file 151 | */ 152 | versionHistory[jsVer] = new Date() 153 | versionHistory['latest'] = jsVer 154 | 155 | const json = JSON.stringify(versionHistory, null, ' ') 156 | writeFileSync(VERSION_HISTORY, json) 157 | } 158 | 159 | /** 160 | * Commit & Push 161 | */ 162 | gitCommit('webwx-' + jsVer) 163 | gitPush() 164 | 165 | log('new version: %s', jsVer) 166 | } 167 | 168 | main() 169 | .catch(console.error) 170 | -------------------------------------------------------------------------------- /formatted/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 微信网页版 9 | 11 | 13 | 15 | 16 | 22 | 25 | 28 | 30 | 31 | 32 | 35 | 39 | 41 | 42 | 43 | 49 | 51 | 52 | 57 | 58 | 59 | 198 | 199 | 200 |
201 |
203 | 204 | 205 |
207 | 208 | 209 |
210 |
211 | 215 |
216 |
217 |

218 | 220 | 224 |

225 | 226 |
227 |
228 | 229 | 230 | 231 | 245 | 246 | 247 | 248 |
250 |
251 | 256 |
257 |
259 | 263 |
264 |
265 | 269 |
270 |
271 | 272 | 273 | 274 |
276 | 279 | 280 | 281 |

283 | 下载微信 PC 版 286 | 下载微信 Mac 版 289 |

290 |
291 | 292 | 293 | 294 | 296 | 297 | 300 | 303 | 306 | 307 | 308 | 309 |
310 | 311 | 312 | 313 |
315 | 316 | 317 | 318 |
319 | 320 |
321 | 327 |
328 |
329 | 331 | 333 |
334 | 335 | 336 | 363 | 390 | 422 | 435 | 436 | 454 | 455 | 470 | 524 | 562 | 602 | 603 | 618 | 619 | 637 | 651 | 671 | 672 | 684 | 685 | 755 | 756 | 770 | 771 | 823 | 824 | 909 | 925 | 943 | 944 | 945 | 1187 | 1188 | 1206 | 1236 | 1237 | 1256 | 1294 | 1304 | 1305 | 1319 | 1331 | 1375 | 1421 | 1422 | 1423 | 1424 | 1425 | 1426 | 1427 | 1436 | 1437 | 1568 | 1569 | 1570 | 1571 | 1572 | 1573 | -------------------------------------------------------------------------------- /history-version.json: -------------------------------------------------------------------------------- 1 | { 2 | "31aa32": "2016-11-09T15:29:35.883Z", 3 | "31b1a1": "2016-11-09T15:49:19.757Z", 4 | "latest": "c270cf4", 5 | "31b57c": "2016-11-10T15:30:24.781Z", 6 | "31e225": "2017-01-05T13:32:40.831Z", 7 | "0c7087d": "2017-02-06T12:55:18.390Z", 8 | "65bba16": "2017-02-20T13:01:06.812Z", 9 | "8f1ca59": "2017-02-21T04:01:07.383Z", 10 | "40649b7": "2017-05-03T04:16:29.754Z", 11 | "8a1ea56": "2017-05-08T10:01:06.959Z", 12 | "4a48aef": "2017-06-05T06:01:06.812Z", 13 | "95ab6e8": "2017-08-25T08:01:06.060Z", 14 | "3378d7e": "2017-08-31T09:01:05.275Z", 15 | "e01fd8a": "2017-09-13T12:01:04.914Z", 16 | "ca360ff": "2017-12-20T08:01:05.219Z", 17 | "bd0d576": "2018-05-17T20:01:05.825Z", 18 | "e9fe509": "2018-05-22T09:01:05.651Z", 19 | "6f09fdb": "2018-06-04T12:01:05.604Z", 20 | "f5ac071": "2018-07-09T14:01:06.434Z", 21 | "6258ec4": "2018-08-10T08:01:05.227Z", 22 | "7ecacec": "2018-08-29T06:01:05.493Z", 23 | "ad43596": "2018-09-20T06:01:05.693Z", 24 | "7574b77": "2019-05-15T09:01:06.414Z", 25 | "d782358": "2019-05-22T16:01:05.673Z", 26 | "f1e4353": "2019-05-27T03:01:05.735Z", 27 | "3d303c1": "2019-06-03T05:01:07.601Z", 28 | "4f3487a": "2019-08-08T05:01:06.864Z", 29 | "c7d281c": "2019-12-12T22:01:05.906Z", 30 | "2cc54a5": "2022-01-12T05:11:43.612Z", 31 | "816bbc8": "2022-01-20T05:09:33.642Z", 32 | "c270cf4": "2022-03-01T05:09:49.661Z" 33 | } -------------------------------------------------------------------------------- /original/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 微信网页版 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 20 | 24 | 25 | 26 | 27 | 28 | 33 | 34 | 35 | 115 | 116 | 117 |
118 |
119 | 120 | 121 |
122 | 123 | 124 |
125 |
126 | 127 |
128 |
129 |

130 | 131 | 132 |

133 | 134 |
135 |
136 | 137 | 138 | 139 | 143 | 144 | 145 | 146 |
147 |
148 | 149 |
150 |
151 | 152 |
153 |
154 | 155 |
156 |
157 | 158 | 159 | 160 |
161 | 162 | 163 | 164 |

165 | 下载微信 PC 版 166 | 下载微信 Mac 版 167 |

168 |
169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 |
181 | 182 | 183 | 184 |
185 | 186 | 187 | 188 |
189 | 190 |
191 | 196 |
197 |
198 | 199 | 200 |
201 | 202 | 203 | 229 | 255 | 286 | 298 | 299 | 316 | 317 | 331 | 384 | 421 | 460 | 461 | 475 | 476 | 493 | 506 | 520 | 521 | 532 | 533 | 581 | 582 | 596 | 597 | 632 | 633 | 717 | 732 | 749 | 750 | 751 | 992 | 993 | 1010 | 1039 | 1040 | 1058 | 1095 | 1104 | 1105 | 1118 | 1129 | 1172 | 1217 | 1218 | 1219 | 1220 | 1221 | 1222 | 1223 | 1232 | 1233 | 1234 | 1235 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "webwx-app-tracker", 3 | "version": "0.0.1", 4 | "description": "webwxApp SPA Html & AngularJS Script Tracker for Web Wechat", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo test test", 8 | "track": "node bin/track.js" 9 | }, 10 | "engines": { 11 | "node": ">= 6" 12 | }, 13 | "repository": { 14 | "type": "git", 15 | "url": "git+https://github.com/wechaty/webwx-app.git" 16 | }, 17 | "keywords": [ 18 | "wechat", 19 | "web", 20 | "javascript" 21 | ], 22 | "author": "Zhuohuan LI ", 23 | "license": "MIT", 24 | "bugs": { 25 | "url": "https://github.com/wechaty/webwx-app/issues" 26 | }, 27 | "homepage": "https://github.com/wechaty/webwx-app#readme", 28 | "dependencies": { 29 | "js-beautify": "^1.6.10" 30 | } 31 | } 32 | --------------------------------------------------------------------------------