├── .gitignore ├── LICENSE ├── README.md ├── chrome ├── background.js ├── block_rules.json ├── content.js ├── icons │ ├── twitch-adblock-32x32.png │ ├── twitch-adblock-48x48.png │ └── twitch-adblock-96x96.png ├── manifest.json ├── popup │ ├── discord.png │ ├── github.png │ ├── index.html │ ├── install.html │ ├── logo.png │ └── popupjs.js └── remove_video_ads.js └── firefox ├── background.js ├── content.js ├── icons ├── twitch-adblock-32x32.png ├── twitch-adblock-48x48.png └── twitch-adblock-96x96.png ├── manifest.json └── popup ├── discord.png ├── github.png ├── index.html ├── install.html ├── logo.png └── popupjs.js /.gitignore: -------------------------------------------------------------------------------- 1 | _metadata 2 | .vs 3 | *.bak -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/HEAD/README.md -------------------------------------------------------------------------------- /chrome/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/HEAD/chrome/background.js -------------------------------------------------------------------------------- /chrome/block_rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/HEAD/chrome/block_rules.json -------------------------------------------------------------------------------- /chrome/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/HEAD/chrome/content.js -------------------------------------------------------------------------------- /chrome/icons/twitch-adblock-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/HEAD/chrome/icons/twitch-adblock-32x32.png -------------------------------------------------------------------------------- /chrome/icons/twitch-adblock-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/HEAD/chrome/icons/twitch-adblock-48x48.png -------------------------------------------------------------------------------- /chrome/icons/twitch-adblock-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/HEAD/chrome/icons/twitch-adblock-96x96.png -------------------------------------------------------------------------------- /chrome/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/HEAD/chrome/manifest.json -------------------------------------------------------------------------------- /chrome/popup/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/HEAD/chrome/popup/discord.png -------------------------------------------------------------------------------- /chrome/popup/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/HEAD/chrome/popup/github.png -------------------------------------------------------------------------------- /chrome/popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/HEAD/chrome/popup/index.html -------------------------------------------------------------------------------- /chrome/popup/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/HEAD/chrome/popup/install.html -------------------------------------------------------------------------------- /chrome/popup/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/HEAD/chrome/popup/logo.png -------------------------------------------------------------------------------- /chrome/popup/popupjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/HEAD/chrome/popup/popupjs.js -------------------------------------------------------------------------------- /chrome/remove_video_ads.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/HEAD/chrome/remove_video_ads.js -------------------------------------------------------------------------------- /firefox/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/HEAD/firefox/background.js -------------------------------------------------------------------------------- /firefox/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/HEAD/firefox/content.js -------------------------------------------------------------------------------- /firefox/icons/twitch-adblock-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/HEAD/firefox/icons/twitch-adblock-32x32.png -------------------------------------------------------------------------------- /firefox/icons/twitch-adblock-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/HEAD/firefox/icons/twitch-adblock-48x48.png -------------------------------------------------------------------------------- /firefox/icons/twitch-adblock-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/HEAD/firefox/icons/twitch-adblock-96x96.png -------------------------------------------------------------------------------- /firefox/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/HEAD/firefox/manifest.json -------------------------------------------------------------------------------- /firefox/popup/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/HEAD/firefox/popup/discord.png -------------------------------------------------------------------------------- /firefox/popup/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/HEAD/firefox/popup/github.png -------------------------------------------------------------------------------- /firefox/popup/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/HEAD/firefox/popup/index.html -------------------------------------------------------------------------------- /firefox/popup/install.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/HEAD/firefox/popup/install.html -------------------------------------------------------------------------------- /firefox/popup/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/HEAD/firefox/popup/logo.png -------------------------------------------------------------------------------- /firefox/popup/popupjs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muleyo/VideoAdBlockForTwitch/HEAD/firefox/popup/popupjs.js --------------------------------------------------------------------------------