Twitch Adblock
Blocks Ads on Twitch.tv.
Twitch Adblockคืออะไร?
Twitch Adblock เป็นส่วนขยายของ Chrome ที่พัฒนาโดย cleanlock และคุณลักษณะหลักของมันคือ "Blocks Ads on Twitch.tv."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Twitch Adblock
ดาวน์โหลดไฟล์ส่วนขยาย Twitch Adblock ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension blocks ads on Twitch with the help of proxies and embeds. Proxies are optional, but might be necessary to block Ads on your end. This extension does not collect/share any of your personal information and the code is public. It is recommended to use this extension along with uBlock Origin. Sourcecode: https://github.com/cleanlock/VideoAdBlockForTwitch Donate: https://github.com/sponsors/cleanlock
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ljhnljhabgjcihjoihakgdiicdjncpkd |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/twitch-adblock/ljhnljhabgjcihjoihakgdiicdjncpkd |
คำอธิบาย | Blocks Ads on Twitch.tv. |
ขนาดไฟล์ | 123 KB |
จำนวนการติดตั้ง | 648,427 |
เวอร์ชันปัจจุบัน | 5.6.0 |
อัปเดตครั้งล่าสุด | 2022-10-26 |
วันที่เผยแพร่ | 2022-04-02 |
คะแนน | 4.18/5 รวมทั้งหมด 547 คะแนน |
ผู้พัฒนา | cleanlock |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/cleanlock/VideoAdBlockForTwitch |
URL หน้าช่วยเหลือ | https://github.com/cleanlock/VideoAdBlockForTwitch/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Blocks Ads on Twitch.tv.", "manifest_version": 3, "name": "Twitch Adblock", "version": "5.6.0", "icons": { "48": "icons\/twitch-adblock-48x48.png", "96": "icons\/twitch-adblock-96x96.png" }, "action": { "default_icon": "icons\/twitch-adblock-32x32.png", "default_title": "Twitch Adblock", "default_popup": "popup\/index.html" }, "options_ui": { "page": "popup\/index.html" }, "permissions": [ "declarativeNetRequest", "storage" ], "declarative_net_request": { "rule_resources": [ { "id": "ruleset_1", "enabled": true, "path": "block_rules.json" } ] }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.twitch.tv\/*" ], "run_at": "document_start", "js": [ "content.js" ] } ], "web_accessible_resources": [ { "resources": [ "remove_video_ads.js" ], "matches": [ "https:\/\/*.twitch.tv\/*" ] } ] } |