Ads Tracker

See if you have ad banners in the current page!

Co to jest Ads Tracker?

Ads Tracker to rozszerzenie Chrome opracowane przez chuckk.media, a jego główną funkcją jest „See if you have ad banners in the current page! ”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Ads Tracker

Pobierz pliki rozszerzeń Ads Tracker 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

                        This extension will detect if the current website the user visiting has banner ads from various companies.                    

Podstawowe informacje o rozszerzeniu

Nazwa Ads Tracker Ads Tracker
ID mhcfcphhgipcgdmdidoffhdmgbcnkamd
Oficjalny URL https://chrome.google.com/webstore/detail/ads-tracker/mhcfcphhgipcgdmdidoffhdmgbcnkamd
Opis See if you have ad banners in the current page!
Rozmiar pliku 19.09 KB
Liczba instalacji 3,732
Aktualna Wersja 1
Ostatnia Aktualizacja 2022-12-01
Data Publikacji 2022-12-01
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper chuckk.media
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://home.ceparateauab.com/
Adres URL Strony Pomocy https://home.ceparateauab.com/contact.html
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "action": {
        "default_icon": "logo.png",
        "default_title": "Ads Tracker",
        "default_popup": "popup.html"
    },
    "description": "See if you have ad banners in the current page! ",
    "icons": {
        "128": "logo.png"
    },
    "manifest_version": 3,
    "name": "Ads Tracker",
    "version": "1",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}