Simple JavaScript Toggle

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

What is Simple JavaScript Toggle?

Simple JavaScript Toggle is a Chrome extension developed by https://squishythoughts.com, and its main feature is "Enable or disable JavaScript on a site-by-site basis.".

Extension Screenshots

screenshot

Download Simple JavaScript Toggle Extension CRX File

Download Simple JavaScript Toggle extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Simple JavaScript Toggle Simple JavaScript Toggle
ID mhidlbegmoiddmebedbiijmpckambgfj
Official URL https://chromewebstore.google.com/detail/simple-javascript-toggle/mhidlbegmoiddmebedbiijmpckambgfj
Description Enable or disable JavaScript on a site-by-site basis.
File Size 19.15 KB
Installation Count 897
Current Version 1.0.0
Last Updated 2014-07-20
Publish Date 2014-07-20
Rating 3.60/5 Total 10 Ratings
Developer https://squishythoughts.com
Payment Type free
Supported Languages 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"
    }
}