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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |