AD Block for Twitch - Twitch ADBlock
Instantly eliminate unwanted adverts, intrusive notifications within a matter of a few clicks using AdBlock For Twitch.
什麼是AD Block for Twitch - Twitch ADBlock?
AD Block for Twitch - Twitch ADBlock是由netflix party開發的Chrome擴展程式,該擴展的主要功能是“Instantly eliminate unwanted adverts, intrusive notifications within a matter of a few clicks using AdBlock For Twitch.”。
擴展截圖
下載AD Block for Twitch - Twitch ADBlock擴展crx文件
下載AD Block for Twitch - Twitch ADBlock擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Twitch ADBlock 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. InstallTwitch ADBlock today and say goodbye to pesky ads and interruptions 擴展基本資訊
| 名稱 | |
| ID | agplmejmlhekblnbnnbecamfplbgmkji |
| 官方網址 | https://chromewebstore.google.com/detail/ad-block-for-twitch-twitc/agplmejmlhekblnbnnbecamfplbgmkji |
| 簡介 | Instantly eliminate unwanted adverts, intrusive notifications within a matter of a few clicks using AdBlock For Twitch. |
| 檔案大小 | 1.11 MB |
| 安裝次數 | 47 |
| 目前版本 | 1.1.0 |
| 更新時間 | 2023-12-26 |
| 上架時間 | 2023-12-26 |
| 評分 | 1.50/5 共 2 次評分 |
| 開發者 | netflix party |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "AD Block for Twitch - Twitch ADBlock",
"description": "Instantly eliminate unwanted adverts, intrusive notifications within a matter of a few clicks using AdBlock For Twitch.",
"version": "1.1.0",
"manifest_version": 3,
"icons": {
"16": "twitch16x16.png",
"48": "twitch48x48.png",
"128": "twitch128x128.png"
},
"action": {
"default_popup": "popup.html",
"default_title": "AD Block for Twitch - Twitch ADBlock",
"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"
}
]
} | |