├── .gitignore ├── .idea ├── .gitignore ├── WeChatVideoDownloader-master.iml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── .prettierignore ├── .prettierrc ├── README.md ├── config-overrides.js ├── electron ├── cert.js ├── const.js ├── decrypt.js ├── index.js ├── ipc.js ├── proxyServer.js ├── setProxy.js └── utils.js ├── img ├── 000.png ├── 001.png ├── 002.png ├── 003.png ├── 004.png ├── 005.png └── 006.png ├── package.json ├── pnpm-lock.yaml ├── public ├── icon │ ├── icon.png │ └── icons │ │ ├── mac │ │ └── icon.icns │ │ ├── png │ │ ├── 1024x1024.png │ │ ├── 128x128.png │ │ ├── 16x16.png │ │ ├── 24x24.png │ │ ├── 256x256.png │ │ ├── 32x32.png │ │ ├── 48x48.png │ │ ├── 512x512.png │ │ └── 64x64.png │ │ └── win │ │ └── icon.ico ├── index.html ├── keys │ ├── private.key │ ├── private.pem │ ├── public.crt │ └── public.pem ├── openssl │ ├── HashInfo.txt │ ├── OpenSSL License.txt │ ├── ReadMe.txt │ ├── libeay32.dll │ ├── openssl.cnf │ ├── openssl.exe │ └── ssleay32.dll ├── regedit-vbs │ ├── ArchitectureAgnosticRegistry.vbs │ ├── ArchitectureSpecificRegistry.vbs │ ├── JsonSafeTest.wsf │ ├── regCreateKey.wsf │ ├── regDeleteKey.wsf │ ├── regDeleteValue.wsf │ ├── regList.wsf │ ├── regListStream.wsf │ ├── regPutValue.wsf │ ├── regUtil.vbs │ ├── util.vbs │ ├── wsRegReadList.wsf │ └── wsRegReadListStream.wsf └── w_c.exe ├── src ├── App.jsx ├── App.less ├── fsm.js ├── index.js └── logo.png └── webpack.electron.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/WeChatVideoDownloader-master.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/.idea/WeChatVideoDownloader-master.iml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/.prettierrc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/README.md -------------------------------------------------------------------------------- /config-overrides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/config-overrides.js -------------------------------------------------------------------------------- /electron/cert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/electron/cert.js -------------------------------------------------------------------------------- /electron/const.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/electron/const.js -------------------------------------------------------------------------------- /electron/decrypt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/electron/decrypt.js -------------------------------------------------------------------------------- /electron/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/electron/index.js -------------------------------------------------------------------------------- /electron/ipc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/electron/ipc.js -------------------------------------------------------------------------------- /electron/proxyServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/electron/proxyServer.js -------------------------------------------------------------------------------- /electron/setProxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/electron/setProxy.js -------------------------------------------------------------------------------- /electron/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/electron/utils.js -------------------------------------------------------------------------------- /img/000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/img/000.png -------------------------------------------------------------------------------- /img/001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/img/001.png -------------------------------------------------------------------------------- /img/002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/img/002.png -------------------------------------------------------------------------------- /img/003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/img/003.png -------------------------------------------------------------------------------- /img/004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/img/004.png -------------------------------------------------------------------------------- /img/005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/img/005.png -------------------------------------------------------------------------------- /img/006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/img/006.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /public/icon/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/icon/icon.png -------------------------------------------------------------------------------- /public/icon/icons/mac/icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/icon/icons/mac/icon.icns -------------------------------------------------------------------------------- /public/icon/icons/png/1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/icon/icons/png/1024x1024.png -------------------------------------------------------------------------------- /public/icon/icons/png/128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/icon/icons/png/128x128.png -------------------------------------------------------------------------------- /public/icon/icons/png/16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/icon/icons/png/16x16.png -------------------------------------------------------------------------------- /public/icon/icons/png/24x24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/icon/icons/png/24x24.png -------------------------------------------------------------------------------- /public/icon/icons/png/256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/icon/icons/png/256x256.png -------------------------------------------------------------------------------- /public/icon/icons/png/32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/icon/icons/png/32x32.png -------------------------------------------------------------------------------- /public/icon/icons/png/48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/icon/icons/png/48x48.png -------------------------------------------------------------------------------- /public/icon/icons/png/512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/icon/icons/png/512x512.png -------------------------------------------------------------------------------- /public/icon/icons/png/64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/icon/icons/png/64x64.png -------------------------------------------------------------------------------- /public/icon/icons/win/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/icon/icons/win/icon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/index.html -------------------------------------------------------------------------------- /public/keys/private.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/keys/private.key -------------------------------------------------------------------------------- /public/keys/private.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/keys/private.pem -------------------------------------------------------------------------------- /public/keys/public.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/keys/public.crt -------------------------------------------------------------------------------- /public/keys/public.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/keys/public.pem -------------------------------------------------------------------------------- /public/openssl/HashInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/openssl/HashInfo.txt -------------------------------------------------------------------------------- /public/openssl/OpenSSL License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/openssl/OpenSSL License.txt -------------------------------------------------------------------------------- /public/openssl/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/openssl/ReadMe.txt -------------------------------------------------------------------------------- /public/openssl/libeay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/openssl/libeay32.dll -------------------------------------------------------------------------------- /public/openssl/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/openssl/openssl.cnf -------------------------------------------------------------------------------- /public/openssl/openssl.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/openssl/openssl.exe -------------------------------------------------------------------------------- /public/openssl/ssleay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/openssl/ssleay32.dll -------------------------------------------------------------------------------- /public/regedit-vbs/ArchitectureAgnosticRegistry.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/regedit-vbs/ArchitectureAgnosticRegistry.vbs -------------------------------------------------------------------------------- /public/regedit-vbs/ArchitectureSpecificRegistry.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/regedit-vbs/ArchitectureSpecificRegistry.vbs -------------------------------------------------------------------------------- /public/regedit-vbs/JsonSafeTest.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/regedit-vbs/JsonSafeTest.wsf -------------------------------------------------------------------------------- /public/regedit-vbs/regCreateKey.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/regedit-vbs/regCreateKey.wsf -------------------------------------------------------------------------------- /public/regedit-vbs/regDeleteKey.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/regedit-vbs/regDeleteKey.wsf -------------------------------------------------------------------------------- /public/regedit-vbs/regDeleteValue.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/regedit-vbs/regDeleteValue.wsf -------------------------------------------------------------------------------- /public/regedit-vbs/regList.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/regedit-vbs/regList.wsf -------------------------------------------------------------------------------- /public/regedit-vbs/regListStream.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/regedit-vbs/regListStream.wsf -------------------------------------------------------------------------------- /public/regedit-vbs/regPutValue.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/regedit-vbs/regPutValue.wsf -------------------------------------------------------------------------------- /public/regedit-vbs/regUtil.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/regedit-vbs/regUtil.vbs -------------------------------------------------------------------------------- /public/regedit-vbs/util.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/regedit-vbs/util.vbs -------------------------------------------------------------------------------- /public/regedit-vbs/wsRegReadList.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/regedit-vbs/wsRegReadList.wsf -------------------------------------------------------------------------------- /public/regedit-vbs/wsRegReadListStream.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/regedit-vbs/wsRegReadListStream.wsf -------------------------------------------------------------------------------- /public/w_c.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/public/w_c.exe -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/App.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/src/App.less -------------------------------------------------------------------------------- /src/fsm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/src/fsm.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/src/index.js -------------------------------------------------------------------------------- /src/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/src/logo.png -------------------------------------------------------------------------------- /webpack.electron.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fly-sem/WeChatVideoDownloader-Pro/HEAD/webpack.electron.js --------------------------------------------------------------------------------