Google Ads Hider
This extension hides ads when searching at Google
Google Ads Hiderとは何ですか?
Google Ads Hiderはdoratomerによって開発されたChromeの拡張機能で、その主な機能は「This extension hides ads when searching at Google」です。
拡張機能のスクリーンショット
Google Ads Hider拡張機能のCRXファイルをダウンロード
Google Ads Hider拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
When you search something to purchase at google, we will hide/blur/mark the ads that you can search without paying more at random websites.
拡張機能の基本情報
名前 | Google Ads Hider |
ID | hphgneaeckdmikgklodjnapgjdkjamcg |
公式URL | https://chromewebstore.google.com/detail/google-ads-hider/hphgneaeckdmikgklodjnapgjdkjamcg |
説明 | This extension hides ads when searching at Google |
ファイルサイズ | 23.87 KB |
インストール数 | 28 |
現在のバージョン | 0.1.2 |
最終更新日 | 2021-05-16 |
公開日 | 2021-05-05 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | doratomer |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Google Ads Hider", "description": "This extension hides ads when searching at Google", "version": "0.1.2", "manifest_version": 2, "icons": { "128": ".\/ad_hider_128.png" }, "options_page": ".\/options.html", "options_ui": { "page": "options.html", "open_in_tab": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "include_globs": [ "http:\/\/*.google.*\/search*", "https:\/\/*.google.*\/search*" ], "js": [ "content_script.js" ], "css": [ "myStyle.css" ] } ], "browser_action": { "default_title": "Privacy Extension For WhatsApp Web", "default_popup": ".\/popup.html", "default_icon": { "32": ".\/ad_hider_128.png" } }, "permissions": [ "https:\/\/www.google.com\/*", "storage" ] } |