Google Ads Hider
This extension hides ads when searching at Google
What is Google Ads Hider?
Google Ads Hider is a Chrome extension developed by doratomer, and its main feature is "This extension hides ads when searching at Google".
Extension Screenshots
Download Google Ads Hider Extension CRX File
Download Google Ads Hider extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Google Ads Hider |
ID | hphgneaeckdmikgklodjnapgjdkjamcg |
Official URL | https://chromewebstore.google.com/detail/google-ads-hider/hphgneaeckdmikgklodjnapgjdkjamcg |
Description | This extension hides ads when searching at Google |
File Size | 23.87 KB |
Installation Count | 28 |
Current Version | 0.1.2 |
Last Updated | 2021-05-16 |
Publish Date | 2021-05-05 |
Rating | 5.00/5 Total 1 Ratings |
Developer | doratomer |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |