Google Ads Hider
This extension hides ads when searching at Google
Cos'è Google Ads Hider?
Google Ads Hider è un'estensione di Chrome sviluppata da doratomer, e la sua funzione principale è "This extension hides ads when searching at Google".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Google Ads Hider
Scarica i file di estensione Google Ads Hider in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Google Ads Hider |
ID | hphgneaeckdmikgklodjnapgjdkjamcg |
URL Ufficiale | https://chromewebstore.google.com/detail/google-ads-hider/hphgneaeckdmikgklodjnapgjdkjamcg |
Descrizione | This extension hides ads when searching at Google |
Dimensione del File | 23.87 KB |
Conteggio Installazioni | 28 |
Versione Corrente | 0.1.2 |
Ultimo Aggiornamento | 2021-05-16 |
Data di Pubblicazione | 2021-05-05 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | doratomer |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |