├── .github └── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ └── suggestion.md ├── .gitignore ├── LICENSE ├── README.md ├── assets └── icons │ └── icon.png ├── firefox-manifest.json ├── manifest.json ├── package.json ├── src ├── amazon-ivs-worker.min.js ├── app.js ├── chrome │ └── app.js ├── firefox │ ├── app.js │ └── twitchnosub.js ├── patch_amazonworker.js ├── restriction-remover.js └── twitchnosub.js ├── tools └── patch.js └── userscript └── twitchnosub.user.js /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besuper/TwitchNoSub/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/suggestion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besuper/TwitchNoSub/HEAD/.github/ISSUE_TEMPLATE/suggestion.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | package-lock.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besuper/TwitchNoSub/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besuper/TwitchNoSub/HEAD/README.md -------------------------------------------------------------------------------- /assets/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besuper/TwitchNoSub/HEAD/assets/icons/icon.png -------------------------------------------------------------------------------- /firefox-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besuper/TwitchNoSub/HEAD/firefox-manifest.json -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besuper/TwitchNoSub/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besuper/TwitchNoSub/HEAD/package.json -------------------------------------------------------------------------------- /src/amazon-ivs-worker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besuper/TwitchNoSub/HEAD/src/amazon-ivs-worker.min.js -------------------------------------------------------------------------------- /src/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besuper/TwitchNoSub/HEAD/src/app.js -------------------------------------------------------------------------------- /src/chrome/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besuper/TwitchNoSub/HEAD/src/chrome/app.js -------------------------------------------------------------------------------- /src/firefox/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besuper/TwitchNoSub/HEAD/src/firefox/app.js -------------------------------------------------------------------------------- /src/firefox/twitchnosub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besuper/TwitchNoSub/HEAD/src/firefox/twitchnosub.js -------------------------------------------------------------------------------- /src/patch_amazonworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besuper/TwitchNoSub/HEAD/src/patch_amazonworker.js -------------------------------------------------------------------------------- /src/restriction-remover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besuper/TwitchNoSub/HEAD/src/restriction-remover.js -------------------------------------------------------------------------------- /src/twitchnosub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besuper/TwitchNoSub/HEAD/src/twitchnosub.js -------------------------------------------------------------------------------- /tools/patch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besuper/TwitchNoSub/HEAD/tools/patch.js -------------------------------------------------------------------------------- /userscript/twitchnosub.user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/besuper/TwitchNoSub/HEAD/userscript/twitchnosub.user.js --------------------------------------------------------------------------------