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. 扩展基本信息
| 名称 | |
| ID | ajmampgbofacbjaoahgcjbjfffcbmcea |
| 官方URL | 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"
]
}
]
} | |