Ad blocker
Removes the ads
什麼是Ad blocker?
Ad blocker是由KarthiTech開發的Chrome擴展程式,該擴展的主要功能是“Removes the ads”。
擴展截圖
下載Ad blocker擴展crx文件
下載Ad blocker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This is a simple tool to remove advertisements in a web page. SWITCH ON or OFF the Ad blocker with a simple click. The number of advertisements blocked in a website, will be displayed over extension icon. Ad blocker will monitor a website periodically and remove the dynamically loaded advertisements.
擴展基本資訊
名稱 | Ad blocker |
ID | ajmampgbofacbjaoahgcjbjfffcbmcea |
官方網址 | https://chromewebstore.google.com/detail/ad-blocker/ajmampgbofacbjaoahgcjbjfffcbmcea |
簡介 | Removes the ads |
檔案大小 | 9.58 KB |
安裝次數 | 6,452 |
目前版本 | 1.0.2 |
更新時間 | 2021-09-13 |
上架時間 | 2019-06-28 |
評分 | 3.33/5 共 6 次評分 |
開發者 | KarthiTech |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Ad blocker", "description": "Removes the ads", "version": "1.0.2", "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "incognito": "split", "browser_action": { "default_icon": "on.png", "default_title": "Remove the Ads" }, "background": { "scripts": [ "bm.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "pm.js" ] } ] } |