Toggle JavaScript

Enable or disable JavaScript without the hassle.

O que é Toggle JavaScript?

Toggle JavaScript é uma extensão do Chrome desenvolvida por dsmith, e sua principal característica é "Enable or disable JavaScript without the hassle.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Toggle JavaScript

Baixe arquivos de extensão Toggle JavaScript no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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!                    

Informações Básicas da Extensão

Nome Toggle JavaScript Toggle JavaScript
ID cidlcjdalomndpeagkjpnefhljffbnlo
URL Oficial https://chromewebstore.google.com/detail/toggle-javascript/cidlcjdalomndpeagkjpnefhljffbnlo
Descrição Enable or disable JavaScript without the hassle.
Tamanho do Arquivo 24.5 KB
Contagem de Instalações 171,111
Versão Atual 2.0
Última Atualização 2022-05-18
Data de Publicação 2018-03-07
Classificação 4.31/5 Total de 171 Avaliações
Desenvolvedor dsmith
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}