├── .github ├── ISSUE_TEMPLATE │ ├── config.yml │ ├── content-allowlist-request.yml │ └── dns-allowlist-request.yml └── workflows │ ├── auto-clean-commit.yml │ ├── autoupdate.yml │ ├── close-inactive-issue.yml │ ├── desize.yml │ └── static.yml ├── LICENSE ├── README.md ├── Source.md ├── index.html ├── mod ├── rules │ ├── adblock-need-remove.txt │ ├── adblock-rules.txt │ ├── dns-rules.txt │ └── first-dns-rules.txt └── title │ ├── adblock-title.txt │ ├── adblock_lite-title.txt │ ├── adblock_plus-title.txt │ └── dns-title.txt ├── rules └── jiekouAD.txt └── script ├── allowlist.txt ├── clean-readme.sh ├── dns-rules-config.json ├── dns-script ├── singbox.py └── surge.py ├── remove.py ├── rule.py ├── update-content-rules.sh ├── update-dns-rules.sh └── update-upstream.sh /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cats-Team/AdRules/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/content-allowlist-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cats-Team/AdRules/HEAD/.github/ISSUE_TEMPLATE/content-allowlist-request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/dns-allowlist-request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cats-Team/AdRules/HEAD/.github/ISSUE_TEMPLATE/dns-allowlist-request.yml -------------------------------------------------------------------------------- /.github/workflows/auto-clean-commit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cats-Team/AdRules/HEAD/.github/workflows/auto-clean-commit.yml -------------------------------------------------------------------------------- /.github/workflows/autoupdate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cats-Team/AdRules/HEAD/.github/workflows/autoupdate.yml -------------------------------------------------------------------------------- /.github/workflows/close-inactive-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cats-Team/AdRules/HEAD/.github/workflows/close-inactive-issue.yml -------------------------------------------------------------------------------- /.github/workflows/desize.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cats-Team/AdRules/HEAD/.github/workflows/desize.yml -------------------------------------------------------------------------------- /.github/workflows/static.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cats-Team/AdRules/HEAD/.github/workflows/static.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cats-Team/AdRules/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cats-Team/AdRules/HEAD/README.md -------------------------------------------------------------------------------- /Source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cats-Team/AdRules/HEAD/Source.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cats-Team/AdRules/HEAD/index.html -------------------------------------------------------------------------------- /mod/rules/adblock-need-remove.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cats-Team/AdRules/HEAD/mod/rules/adblock-need-remove.txt -------------------------------------------------------------------------------- /mod/rules/adblock-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cats-Team/AdRules/HEAD/mod/rules/adblock-rules.txt -------------------------------------------------------------------------------- /mod/rules/dns-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cats-Team/AdRules/HEAD/mod/rules/dns-rules.txt -------------------------------------------------------------------------------- /mod/rules/first-dns-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cats-Team/AdRules/HEAD/mod/rules/first-dns-rules.txt -------------------------------------------------------------------------------- /mod/title/adblock-title.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cats-Team/AdRules/HEAD/mod/title/adblock-title.txt -------------------------------------------------------------------------------- /mod/title/adblock_lite-title.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cats-Team/AdRules/HEAD/mod/title/adblock_lite-title.txt -------------------------------------------------------------------------------- /mod/title/adblock_plus-title.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cats-Team/AdRules/HEAD/mod/title/adblock_plus-title.txt -------------------------------------------------------------------------------- /mod/title/dns-title.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cats-Team/AdRules/HEAD/mod/title/dns-title.txt -------------------------------------------------------------------------------- /rules/jiekouAD.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cats-Team/AdRules/HEAD/rules/jiekouAD.txt -------------------------------------------------------------------------------- /script/allowlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cats-Team/AdRules/HEAD/script/allowlist.txt -------------------------------------------------------------------------------- /script/clean-readme.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cats-Team/AdRules/HEAD/script/clean-readme.sh -------------------------------------------------------------------------------- /script/dns-rules-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cats-Team/AdRules/HEAD/script/dns-rules-config.json -------------------------------------------------------------------------------- /script/dns-script/singbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cats-Team/AdRules/HEAD/script/dns-script/singbox.py -------------------------------------------------------------------------------- /script/dns-script/surge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cats-Team/AdRules/HEAD/script/dns-script/surge.py -------------------------------------------------------------------------------- /script/remove.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cats-Team/AdRules/HEAD/script/remove.py -------------------------------------------------------------------------------- /script/rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cats-Team/AdRules/HEAD/script/rule.py -------------------------------------------------------------------------------- /script/update-content-rules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cats-Team/AdRules/HEAD/script/update-content-rules.sh -------------------------------------------------------------------------------- /script/update-dns-rules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cats-Team/AdRules/HEAD/script/update-dns-rules.sh -------------------------------------------------------------------------------- /script/update-upstream.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cats-Team/AdRules/HEAD/script/update-upstream.sh --------------------------------------------------------------------------------