├── .eslintignore ├── .eslintrc.json ├── .github ├── dependabot.yml └── workflows │ ├── autoRelease.yml │ ├── enhance-deps-pr.yml │ ├── jsdoc.yml │ └── stale.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── conf.json ├── lib ├── notify.js ├── rule-providers.yml └── variables.yml ├── main.js ├── package.json ├── resources ├── checkin.png └── subscription-info.png └── scripts ├── add-proxy-plus.js ├── add-proxy.js ├── auto-check-in.js ├── change-keys.js ├── change-rules.js ├── change-rules.yml ├── download-provider.js ├── info.js ├── merge-nodes.js ├── subs-info-parser.js ├── subscription-userinfo.js └── test.js /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/cfw-scripts/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/cfw-scripts/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/autoRelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/cfw-scripts/HEAD/.github/workflows/autoRelease.yml -------------------------------------------------------------------------------- /.github/workflows/enhance-deps-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/cfw-scripts/HEAD/.github/workflows/enhance-deps-pr.yml -------------------------------------------------------------------------------- /.github/workflows/jsdoc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/cfw-scripts/HEAD/.github/workflows/jsdoc.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/cfw-scripts/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/cfw-scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | scripts/variables.json -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/cfw-scripts/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/cfw-scripts/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/cfw-scripts/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/cfw-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/cfw-scripts/HEAD/README.md -------------------------------------------------------------------------------- /conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/cfw-scripts/HEAD/conf.json -------------------------------------------------------------------------------- /lib/notify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/cfw-scripts/HEAD/lib/notify.js -------------------------------------------------------------------------------- /lib/rule-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/cfw-scripts/HEAD/lib/rule-providers.yml -------------------------------------------------------------------------------- /lib/variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/cfw-scripts/HEAD/lib/variables.yml -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/cfw-scripts/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/cfw-scripts/HEAD/package.json -------------------------------------------------------------------------------- /resources/checkin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/cfw-scripts/HEAD/resources/checkin.png -------------------------------------------------------------------------------- /resources/subscription-info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/cfw-scripts/HEAD/resources/subscription-info.png -------------------------------------------------------------------------------- /scripts/add-proxy-plus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/cfw-scripts/HEAD/scripts/add-proxy-plus.js -------------------------------------------------------------------------------- /scripts/add-proxy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/cfw-scripts/HEAD/scripts/add-proxy.js -------------------------------------------------------------------------------- /scripts/auto-check-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/cfw-scripts/HEAD/scripts/auto-check-in.js -------------------------------------------------------------------------------- /scripts/change-keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/cfw-scripts/HEAD/scripts/change-keys.js -------------------------------------------------------------------------------- /scripts/change-rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/cfw-scripts/HEAD/scripts/change-rules.js -------------------------------------------------------------------------------- /scripts/change-rules.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/cfw-scripts/HEAD/scripts/change-rules.yml -------------------------------------------------------------------------------- /scripts/download-provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/cfw-scripts/HEAD/scripts/download-provider.js -------------------------------------------------------------------------------- /scripts/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/cfw-scripts/HEAD/scripts/info.js -------------------------------------------------------------------------------- /scripts/merge-nodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/cfw-scripts/HEAD/scripts/merge-nodes.js -------------------------------------------------------------------------------- /scripts/subs-info-parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/cfw-scripts/HEAD/scripts/subs-info-parser.js -------------------------------------------------------------------------------- /scripts/subscription-userinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/cfw-scripts/HEAD/scripts/subscription-userinfo.js -------------------------------------------------------------------------------- /scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yi-Xu-0100/cfw-scripts/HEAD/scripts/test.js --------------------------------------------------------------------------------