Toggle JavaScript

Enable or disable JavaScript without the hassle.

Co je Toggle JavaScript?

Toggle JavaScript je rozšíření Chrome vyvinuté dsmith, a jeho hlavní funkcí je „Enable or disable JavaScript without the hassle.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Toggle JavaScript

Stáhněte si soubory rozšíření Toggle JavaScript ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Toggle JavaScript provides a simple, easy-to-access browser button to enable or disable JavaScript globally.

It was built with web developers in mind, but is equally useful for anyone who wants to quickly enable/disable JavaScript without having to dig deep into Chrome's Settings panel.

Features:

- global JavaScript master switch
- reloads when toggling to ensure accurate rendering (optional since v1.3)

More Info:

There are similar extensions that enable or disable JavaScript per-domain, but I find this over-complicated so I decided to build a JavaScript "master switch".

Also, similar extensions can cause pages to be rendered inaccurately after disabling JavaScript. This extension uses an auto-reload technique to ensure that pages are always rendered correctly after switching JavaScript on or off.

I hope you enjoy using it - if you do, please tell your friends about it and help me out by giving it a positive review. Thanks!                    

Základní Informace o Rozšíření

Název Toggle JavaScript Toggle JavaScript
ID cidlcjdalomndpeagkjpnefhljffbnlo
Oficiální URL https://chromewebstore.google.com/detail/toggle-javascript/cidlcjdalomndpeagkjpnefhljffbnlo
Popis Enable or disable JavaScript without the hassle.
Velikost souboru 24.5 KB
Počet instalací 171,111
Aktuální Verze 2.0
Poslední Aktualizace 2022-05-18
Datum Vydání 2018-03-07
Hodnocení 4.31/5 Celkem 171 Hodnocení
Vývojář dsmith
E-mail [email protected]
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Toggle JavaScript",
    "version": "2.0",
    "manifest_version": 3,
    "description": "Enable or disable JavaScript without the hassle.",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "action": {
        "default_icon": "icons\/38-on.png"
    },
    "background": {
        "service_worker": "js\/service-worker-async.js"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+Shift+J",
                "mac": "Alt+Shift+J"
            }
        }
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "permissions": [
        "contentSettings",
        "storage"
    ]
}