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 |
| Eメール | [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"
]
}
]
} | |