Javascript Toggle

A really simple, clean and lightweight extension for toggling the Javascript setting on any page.

O que é Javascript Toggle?

Javascript Toggle é uma extensão do Chrome desenvolvida por Kai Yuan, e sua principal característica é "A really simple, clean and lightweight extension for toggling the Javascript setting on any page.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Javascript Toggle

Baixe arquivos de extensão Javascript Toggle 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

                        Just press Ctrl+I on Windows/Linux or Cmd + J on Mac, or click on the extension icon to toggle the Javascript setting for the page in the current tab.

Do you prefer to review and compile the code yourself? No problem, the code is open-sourced at https://github.com/thngkaiyuan/js-toggle/tree/master.                    

Informações Básicas da Extensão

Nome Javascript Toggle Javascript Toggle
ID mdjbjncpgebfmegaljihajkedlaajeja
URL Oficial https://chromewebstore.google.com/detail/javascript-toggle/mdjbjncpgebfmegaljihajkedlaajeja
Descrição A really simple, clean and lightweight extension for toggling the Javascript setting on any page.
Tamanho do Arquivo 39.36 KB
Contagem de Instalações 232
Versão Atual 1.5
Última Atualização 2019-05-04
Data de Publicação 2019-05-04
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Kai Yuan
Tipo de Pagamento free
Site da Extensão https://github.com/thngkaiyuan/js-toggle/tree/master
URL da Página de Ajuda https://github.com/thngkaiyuan/js-toggle/tree/master
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Javascript Toggle",
    "version": "1.5",
    "description": "A really simple, clean and lightweight extension for toggling the Javascript setting on any page.",
    "permissions": [
        "tabs",
        "contentSettings"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "toggle-js": {
            "suggested_key": {
                "default": "Ctrl+I",
                "mac": "Command+J"
            },
            "description": "Toggle the Javascript setting on this page."
        }
    },
    "icons": {
        "16": "images\/allow-16.png",
        "32": "images\/allow-32.png",
        "48": "images\/allow-48.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/allow-16.png",
            "32": "images\/allow-32.png",
            "48": "images\/allow-48.png"
        },
        "default_title": "Toggle the Javascript setting on any page with ease."
    },
    "manifest_version": 2
}