Continue Without Supporting

Browser extension that auto-clicks on "continue without supporting"/similar phrases when given a popup about disabling ad blocking.

Co to jest Continue Without Supporting?

Continue Without Supporting to rozszerzenie Chrome opracowane przez Ryan Stewart, a jego główną funkcją jest „Browser extension that auto-clicks on "continue without supporting"/similar phrases when given a popup about disabling ad blocking.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Continue Without Supporting

Pobierz pliki rozszerzeń Continue Without Supporting 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

                        A browser extension that auto-clicks on "continue without supporting" or similar phrases when given a popup about disabling ad blocking. You can now spend less time trying to find the small continue text and more time actually using the website!                    

Podstawowe informacje o rozszerzeniu

Nazwa Continue Without Supporting Continue Without Supporting
ID lieiooigeiockdceiekbikfaklnklmef
Oficjalny URL https://chromewebstore.google.com/detail/continue-without-supporti/lieiooigeiockdceiekbikfaklnklmef
Opis Browser extension that auto-clicks on "continue without supporting"/similar phrases when given a popup about disabling ad blocking.
Rozmiar pliku 46.19 KB
Liczba instalacji 81
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2023-06-10
Data Publikacji 2023-06-10
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Ryan Stewart
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/rynstwrt/Continue-Without-Supporting
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Continue Without Supporting",
    "version": "1.0.0",
    "description": "Browser extension that auto-clicks on \"continue without supporting\"\/similar phrases when given a popup about disabling ad blocking.",
    "content_scripts": [
        {
            "js": [
                "scripts\/content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "icons": {
        "16": "assets\/16.png",
        "48": "assets\/48.png",
        "128": "assets\/128.png"
    },
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "scripts\/service_worker.js",
        "type": "module"
    },
    "action": []
}