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
}