Continue Without Supporting

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

Vad är Continue Without Supporting?

Continue Without Supporting är en Chrome-tillägg utvecklad av Ryan Stewart, och dess huvudfunktion är "Browser extension that auto-clicks on "continue without supporting"/similar phrases when given a popup about disabling ad blocking.".

Tilläggsskärmbilder

screenshot

Ladda ner Continue Without Supporting-förlängningens CRX-fil

Ladda ner Continue Without Supporting-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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!                    

Grundläggande Information om Tillägg

Namn Continue Without Supporting Continue Without Supporting
ID lieiooigeiockdceiekbikfaklnklmef
Officiell webbadress https://chromewebstore.google.com/detail/continue-without-supporti/lieiooigeiockdceiekbikfaklnklmef
Beskrivning Browser extension that auto-clicks on "continue without supporting"/similar phrases when given a popup about disabling ad blocking.
Filstorlek 46.19 KB
Antal Installationer 81
Aktuell Version 1.0.0
Senast Uppdaterad 2023-06-10
Publiceringsdatum 2023-06-10
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Ryan Stewart
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/rynstwrt/Continue-Without-Supporting
Stödda Språk 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": []
}