Better Twitch Adblock
Blocks Video and Content Ads on Twitch.tv
Better Twitch Adblock là gì?
Better Twitch Adblock là một tiện ích mở rộng Chrome được phát triển bởi DonnyJones, và tính năng chính của nó là "Blocks Video and Content Ads on Twitch.tv".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Better Twitch Adblock
Tải xuống các tệp mở rộng Better Twitch Adblock dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Better Twitch Adblock !! PLEASE MAKE SURE TO DISABLE ANY OTHER TWITCH SPECIFIC AD BLOCKERS !! How does it work? The extension works by finding a Twitch stream source without ads and replacing the ad with the ad-less version. The ad-less version will be 480p, while the ad runs. Twitch Ads will be blocked for pre-rolls and mid-rolls and also on VOD's. We also block third party trackers. No personal information is needed or collected. Any donations are very much welcome, as we do pay server costs to make this work. You can donate via Paypal at https://www.paypal.com/paypalme/ttvadblock You can find our code on Github and keep up to date with any changes. https://github.com/DonnyJones/AdblockerForTwitch The code is licensed under the GPL-3.0 license. Credits are on the Github page.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Better Twitch Adblock |
ID | bfeoploanlacfeohdakiecicjnjcooji |
URL Chính Thức | https://chromewebstore.google.com/detail/better-twitch-adblock/bfeoploanlacfeohdakiecicjnjcooji |
Mô tả | Blocks Video and Content Ads on Twitch.tv |
Kích Thước Tệp | 67.08 KB |
Số Lần Cài Đặt | 6,394 |
Phiên Bản Hiện Tại | 3.0.3 |
Cập Nhật Lần Cuối | 2023-01-02 |
Ngày Phát Hành | 2022-09-01 |
Đánh Giá | 2.65/5 Tổng số 49 Đánh Giá |
Nhà Phát Triển | DonnyJones |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Blocks Video and Content Ads on Twitch.tv", "manifest_version": 3, "name": "Better Twitch Adblock", "version": "3.0.3", "icons": { "48": "icons\/adblock-48x48.png", "96": "icons\/adblock-96x96.png" }, "action": { "default_icon": "icons\/adblock-32x32.png", "default_title": "Better Twitch Adblock", "default_popup": "dropdown\/index.html" }, "options_ui": { "page": "dropdown\/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_ads.js" ], "matches": [ "https:\/\/*.twitch.tv\/*" ] } ] } |