Google Ads Hider
Hide Google search ads
Co to jest Google Ads Hider?
Google Ads Hider to rozszerzenie Chrome opracowane przez Yui, a jego główną funkcją jest „Hide Google search ads”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Google Ads Hider
Pobierz pliki rozszerzeń Google Ads Hider w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Google Ads Hider is a browser extension designed to enhance your Google search experience. With a simple click on the extension's icon, you can easily toggle between hiding and displaying ads on your Google search results. By default, upon installation, ads will be hidden.
Podstawowe informacje o rozszerzeniu
Nazwa | Google Ads Hider |
ID | ngiebklmehgbkilagngnkeppmncackol |
Oficjalny URL | https://chromewebstore.google.com/detail/google-ads-hider/ngiebklmehgbkilagngnkeppmncackol |
Opis | Hide Google search ads |
Rozmiar pliku | 7.09 MB |
Liczba instalacji | 63 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2023-08-24 |
Data Publikacji | 2023-08-24 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Yui |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Google Ads Hider", "version": "1.0", "description": "Hide Google search ads", "permissions": [ "storage", "activeTab" ], "background": { "service_worker": "dist\/background.js" }, "content_scripts": [ { "matches": [ "*:\/\/www.google.com\/*", "*:\/\/www.google.co.jp\/*", "*:\/\/www.google.co.uk\/*" ], "js": [ "dist\/content.js" ] } ], "action": { "default_icon": { "16": "active.png", "48": "active.png", "128": "active.png" } }, "icons": { "16": "active.png", "48": "active.png", "128": "active.png" } } |