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
官方網址 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
}