TF2Center AdBlock
Block ads on the tf2center.com without triggering anti-adblocker
什麼是TF2Center AdBlock?
TF2Center AdBlock是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“Block ads on the tf2center.com without triggering anti-adblocker”。
擴展截圖
下載TF2Center AdBlock擴展crx文件
下載TF2Center AdBlock擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Extension is blocking advertisements on the tf2center (website dedicated to competitive pickup games for Team Fortress 2) without triggering its anti-adblocker. Extension for the Blink-based browsers (tested in Chromium and Chrome, but may work in Brave, Vivaldi, Opera, Yandex Browser, etc.) Keep in mind that other adblocking or privacy enhancing extensions still may trigger tf2center's anti-adblocker and therefore you'll need to disable them for that domain. Extension is open-source and being distributed under the MIT license. Changelog: https://github.com/cancerpubs/tf2center-AdBlock#changelog
擴展基本資訊
名稱 | TF2Center AdBlock |
ID | ggafejbhopolaieibdkojeaiaodcnmbb |
官方網址 | https://chromewebstore.google.com/detail/tf2center-adblock/ggafejbhopolaieibdkojeaiaodcnmbb |
簡介 | Block ads on the tf2center.com without triggering anti-adblocker |
檔案大小 | 64.16 KB |
安裝次數 | 93 |
目前版本 | 1.2.0 |
更新時間 | 2018-11-20 |
上架時間 | 2018-11-19 |
評分 | 4.67/5 共 3 次評分 |
開發者 | Unknown |
付費類型 | free |
擴展官網 | https://github.com/cancerpubs/tf2center-AdBlock |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "TF2Center AdBlock", "description": "Block ads on the tf2center.com without triggering anti-adblocker", "permissions": [ "activeTab", "storage" ], "version": "1.2.0", "manifest_version": 2, "icons": { "16": "16.png", "32": "32.png", "48": "48.png", "128": "128.png" }, "browser_action": { "default_icon": { "38": "38.png" }, "default_title": "TF2Center AdBlock", "default_popup": "popup.html" }, "content_scripts": [ { "js": [ "removeads.js" ], "matches": [ "https:\/\/tf2center.com\/*", "http:\/\/tf2center.com\/*" ] }, { "js": [ "help.js" ], "matches": [ "https:\/\/tf2center.com\/adblock", "http:\/\/tf2center.com\/adblock" ] }, { "js": [ "popup.js" ], "matches": [ "https:\/\/tf2center.com\/lobbies\/*", "http:\/\/tf2center.com\/lobbies\/*", "https:\/\/tf2center.com\/lobbies", "http:\/\/tf2center.com\/lobbies", "https:\/\/tf2center.com\/profile\/*", "http:\/\/tf2center.com\/profile\/*" ], "run_at": "document_start" } ], "web_accessible_resources": [ "128.png" ] } |