One-Click JavaScript Toggle

Fastest way to enable/disable JavaScript

什麼是One-Click JavaScript Toggle?

One-Click JavaScript Toggle是由https://timkovi.ch開發的Chrome擴展程式,該擴展的主要功能是“Fastest way to enable/disable JavaScript”。

擴展截圖

screenshot

下載One-Click JavaScript Toggle擴展crx文件

下載One-Click JavaScript Toggle擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 One-Click JavaScript Toggle One-Click JavaScript Toggle
ID ahjfodbngfpdppljbkhcfhcfdagfgcnj
官方網址 https://chromewebstore.google.com/detail/one-click-javascript-togg/ahjfodbngfpdppljbkhcfhcfdagfgcnj
簡介 Fastest way to enable/disable JavaScript
檔案大小 25.16 KB
安裝次數 3,411
目前版本 1.5.2
更新時間 2019-07-30
上架時間 2019-07-30
評分 4.33/5 共 12 次評分
開發者 https://timkovi.ch
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/mtimkovich/one-click-javascript-toggle
說明頁面URL https://github.com/mtimkovich/one-click-javascript-toggle/issues
支援的語言 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"
        }
    }
}