Google Ads Hider

This extension hides ads when searching at Google

Co to jest Google Ads Hider?

Google Ads Hider to rozszerzenie Chrome opracowane przez doratomer, a jego główną funkcją jest „This extension hides ads when searching at Google”.

Zrzuty ekranu rozszerzenia

screenshot

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

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Google Ads Hider Google Ads Hider
ID hphgneaeckdmikgklodjnapgjdkjamcg
Oficjalny URL https://chromewebstore.google.com/detail/google-ads-hider/hphgneaeckdmikgklodjnapgjdkjamcg
Opis This extension hides ads when searching at Google
Rozmiar pliku 23.87 KB
Liczba instalacji 28
Aktualna Wersja 0.1.2
Ostatnia Aktualizacja 2021-05-16
Data Publikacji 2021-05-05
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper doratomer
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    ]
}