Javascript Toggle

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

什么是Javascript Toggle?

Javascript Toggle是由Kai Yuan开发的Chrome扩展程序,该扩展的主要功能是“A really simple, clean and lightweight extension for toggling the Javascript setting on any page.”。

扩展截图

screenshot

下载Javascript Toggle扩展crx文件

下载Javascript Toggle扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Javascript Toggle Javascript Toggle
ID mdjbjncpgebfmegaljihajkedlaajeja
官方URL https://chromewebstore.google.com/detail/javascript-toggle/mdjbjncpgebfmegaljihajkedlaajeja
简介 A really simple, clean and lightweight extension for toggling the Javascript setting on any page.
文件大小 39.36 KB
安装次数 232
当前版本 1.5
更新时间 2019-05-04
上架时间 2019-05-04
评分 5.00/5 共2次评分
开发者 Kai Yuan
付费类型 free
扩展官网 https://github.com/thngkaiyuan/js-toggle/tree/master
帮助页面URL https://github.com/thngkaiyuan/js-toggle/tree/master
支持的语言 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
}