One-Click JavaScript Toggle

Fastest way to enable/disable JavaScript

What is One-Click JavaScript Toggle?

One-Click JavaScript Toggle is a Chrome extension developed by https://timkovi.ch, and its main feature is "Fastest way to enable/disable JavaScript".

Extension Screenshots

screenshot

Download One-Click JavaScript Toggle Extension CRX File

Download One-Click 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

                        One-Click JavaScript Toggle is a Chrome extension that allows enabling/disabling JavaScript on the fly by hostname and subdomain through either the browser icon or context menu. It's the fastest and most convenient way to control which websites you allow to run JavaScript.

This is a continuation of the amazing Quick JavaScript Switcher by Maxime Le Breton, which is unfortunately no longer maintained.

Works with Chrome 16+

1.5.2
====
- Rebrand as it's not really a "2"

1.5.0
====
- Fixed some out of date paths
- Added right click toggle menu                    

Extension Basic Information

Name One-Click JavaScript Toggle One-Click JavaScript Toggle
ID ahjfodbngfpdppljbkhcfhcfdagfgcnj
Official URL https://chromewebstore.google.com/detail/one-click-javascript-togg/ahjfodbngfpdppljbkhcfhcfdagfgcnj
Description Fastest way to enable/disable JavaScript
File Size 25.16 KB
Installation Count 3,411
Current Version 1.5.2
Last Updated 2019-07-30
Publish Date 2019-07-30
Rating 4.33/5 Total 12 Ratings
Developer https://timkovi.ch
Email [email protected]
Payment Type free
Extension Website https://github.com/mtimkovich/one-click-javascript-toggle
Help Page URL https://github.com/mtimkovich/one-click-javascript-toggle/issues
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "One-Click JavaScript Toggle",
    "short_name": "ojt",
    "version": "1.5.2",
    "minimum_chrome_version": "16.0",
    "manifest_version": 2,
    "homepage_url": "https:\/\/github.com\/mtimkovich\/one-click-javascript-toggle",
    "description": "Fastest way to enable\/disable JavaScript",
    "icons": {
        "16": "icons\/icon.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "permissions": [
        "tabs",
        "contentSettings",
        "contextMenus",
        "storage"
    ],
    "browser_action": {
        "default_icon": "icons\/icon.png"
    },
    "incognito": "spanning",
    "background": {
        "page": "background.html"
    },
    "options_page": "options.html",
    "commands": {
        "toggle-qjs": {
            "suggested_key": {
                "default": "Alt+Shift+Q",
                "mac": "Command+Shift+Q"
            },
            "description": "Toggle JavaScript"
        }
    }
}