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 |
官方URL | 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" ] } |