Simple JavaScript Toggle

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

Qu'est-ce que Simple JavaScript Toggle ?

Simple JavaScript Toggle est une extension Chrome développée par https://squishythoughts.com, et sa fonction principale est "Enable or disable JavaScript on a site-by-site basis.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Simple JavaScript Toggle

Téléchargez les fichiers d'extension Simple JavaScript Toggle au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Simple JavaScript Toggle Simple JavaScript Toggle
ID mhidlbegmoiddmebedbiijmpckambgfj
URL Officiel https://chromewebstore.google.com/detail/simple-javascript-toggle/mhidlbegmoiddmebedbiijmpckambgfj
Description Enable or disable JavaScript on a site-by-site basis.
Taille du Fichier 19.15 KB
Nombre d'Installations 897
Version Actuelle 1.0.0
Dernière Mise à Jour 2014-07-20
Date de Publication 2014-07-20
Évaluation 3.60/5 Total 10 Évaluations
Développeur https://squishythoughts.com
Type de Paiement free
Langues Prises en Charge 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"
    }
}