Twitch adblocker
Eliminate interruptions, enjoy Twitch streams ad-free
Twitch adblockerとは何ですか?
Twitch adblockerはOdd Extensionsによって開発されたChromeの拡張機能で、その主な機能は「Eliminate interruptions, enjoy Twitch streams ad-free」です。
拡張機能のスクリーンショット
Twitch adblocker拡張機能のCRXファイルをダウンロード
Twitch adblocker拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Twitch adblocker is a versatile Chrome extension that elevates your browsing experience by seamlessly blocking intrusive ads, including annoying pop-ups and disruptive Twitch ads. Whether you're exploring the web or indulging in your favorite Twitch streams, our extension ensures an ad-free environment. With its lightweight design, it won't compromise your browser's performance. We also encourage supporting content creators through alternative means, so you can enjoy ad-free content while still helping the creators you love. Install Twitch adblocker today and say goodbye to pesky ads and interruptions 拡張機能の基本情報
| 名前 | |
| ID | iaokppbbpahmidkimkdfmkmddmcoegjj |
| 公式URL | https://chromewebstore.google.com/detail/twitch-adblocker/iaokppbbpahmidkimkdfmkmddmcoegjj |
| 説明 | Eliminate interruptions, enjoy Twitch streams ad-free |
| ファイルサイズ | 1.02 MB |
| インストール数 | 762 |
| 現在のバージョン | 1.0.1 |
| 最終更新日 | 2023-10-02 |
| 公開日 | 2023-10-01 |
| 評価 | 4.25/5 合計 32 レビュー |
| 開発者 | Odd Extensions |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://www.twitchadblocker.co/ |
| ヘルプページのURL | https://www.twitchadblocker.co/support |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Twitch adblocker",
"description": "Eliminate interruptions, enjoy Twitch streams ad-free",
"version": "1.0.1",
"manifest_version": 3,
"icons": {
"16": "twitch16x16.png",
"48": "twitch48x48.png",
"128": "twitch128x128.png"
},
"action": {
"default_popup": "popup.html",
"default_title": "Twitch adblocker",
"default_icon": "twitch16x16.png"
},
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset_1",
"enabled": true,
"path": "rules.json"
}
]
},
"permissions": [
"declarativeNetRequest",
"storage"
],
"options_page": "options.html",
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*\/*"
],
"js": [
"contentScript.js"
]
},
{
"matches": [
"https:\/\/www.twitch.tv\/*"
],
"js": [
"adRemove.js",
"removeTwitchAds.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
{
"resources": [
"adRemove.js",
"removeTwitchAds.js"
],
"matches": [
"https:\/\/www.twitch.tv\/*"
],
"run_at": "document_start"
}
]
} | |