Simple JavaScript Toggle

Enable or disable JavaScript on a site-by-site basis.

Cos'è Simple JavaScript Toggle?

Simple JavaScript Toggle è un'estensione di Chrome sviluppata da https://squishythoughts.com, e la sua funzione principale è "Enable or disable JavaScript on a site-by-site basis.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Simple JavaScript Toggle

Scarica i file di estensione Simple JavaScript Toggle in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Simple JavaScript Toggle adds a button which allows you to control if JavaScript should be allowed to run on the current site or not.

Chrome has built-in support for allowing you to configure which sites should be allowed to run JavaScript. You do this on the Chrome settings page, and it works really well for permanently blocking or allowing a site. If you find that you regularly need to change whether to allow or block JavaScript on a site, using the settings page gets impractical. That's where this extension comes in. By clicking on a button in the toolbar, JavaScript is either enabled or disabled for the current site whereupon the page is reloaded.                    

Informazioni di Base sull'Estensione

Nome Simple JavaScript Toggle Simple JavaScript Toggle
ID mhidlbegmoiddmebedbiijmpckambgfj
URL Ufficiale https://chromewebstore.google.com/detail/simple-javascript-toggle/mhidlbegmoiddmebedbiijmpckambgfj
Descrizione Enable or disable JavaScript on a site-by-site basis.
Dimensione del File 19.15 KB
Conteggio Installazioni 897
Versione Corrente 1.0.0
Ultimo Aggiornamento 2014-07-20
Data di Pubblicazione 2014-07-20
Valutazione 3.60/5 Totale 10 Valutazioni
Sviluppatore https://squishythoughts.com
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple JavaScript Toggle",
    "description": "Enable or disable JavaScript on a site-by-site basis.",
    "version": "1.0.0",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "contentSettings"
    ],
    "browser_action": {
        "default_icon": "icon-off.png",
        "default_title": "Toggle JavaScript"
    },
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    }
}