Javascript Toggle

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

What is Javascript Toggle?

Javascript Toggle is a Chrome extension developed by Kai Yuan, and its main feature is "A really simple, clean and lightweight extension for toggling the Javascript setting on any page.".

Extension Screenshots

screenshot

Download Javascript Toggle Extension CRX File

Download 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

                        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.                    

Extension Basic Information

Name Javascript Toggle Javascript Toggle
ID mdjbjncpgebfmegaljihajkedlaajeja
Official URL https://chromewebstore.google.com/detail/javascript-toggle/mdjbjncpgebfmegaljihajkedlaajeja
Description A really simple, clean and lightweight extension for toggling the Javascript setting on any page.
File Size 39.36 KB
Installation Count 232
Current Version 1.5
Last Updated 2019-05-04
Publish Date 2019-05-04
Rating 5.00/5 Total 2 Ratings
Developer Kai Yuan
Payment Type free
Extension Website https://github.com/thngkaiyuan/js-toggle/tree/master
Help Page URL https://github.com/thngkaiyuan/js-toggle/tree/master
Supported Languages 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
}