JSFiddle Auto Run & Save

This extension makes JSFiddle automatically run & save while typing, also adds a button to hide panels other than js

JSFiddle Auto Run & Saveとは何ですか?

JSFiddle Auto Run & Saveはkongyuyuによって開発されたChromeの拡張機能で、その主な機能は「This extension makes JSFiddle automatically run & save while typing, also adds a button to hide panels other than js」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

JSFiddle Auto Run & Save拡張機能のCRXファイルをダウンロード

JSFiddle Auto Run & Save拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Features:
1. JSFiddle runs automatically when key strikes stopped for 1.5 seconds. 
2. JSFiddle saves automatically with every 25 key strikes.
3. Adds a button on JSFiddle page to hide all panels other than js panel.

Feature 1 & 2 could be turned on/off by toggling the extension icon.
Feature 3 could be toggled with the "Hide/Show Extra Panels" button on JSFiddle Page.

Work in progress:
1. Add a configuration page for customize auto run delay and auto save key counts.

Special thanks to @mechanicious on github. I learnt how to enable auto run on JSFiddle from him, and then built this extension.                    

拡張機能の基本情報

名前 JSFiddle Auto Run & Save JSFiddle Auto Run & Save
ID holmgemnafgpfmphccghdfljgaocpbfj
公式URL https://chrome.google.com/webstore/detail/jsfiddle-auto-run-save/holmgemnafgpfmphccghdfljgaocpbfj
説明 This extension makes JSFiddle automatically run & save while typing, also adds a button to hide panels other than js
ファイルサイズ 24.39 KB
インストール数 58
現在のバージョン 0.0.1
最終更新日 2018-02-13
公開日 2018-02-13
評価 5.00/5 合計 1 レビュー
開発者 kongyuyu
支払い方法 free
拡張機能のウェブサイト https://github.com/kongyuyu/jsfiddle-chrome-extension
ヘルプページのURL https://github.com/kongyuyu/jsfiddle-chrome-extension/issues
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "JSFiddle Auto Run & Save",
    "description": "This extension makes JSFiddle automatically run & save while typing, also adds a button to hide panels other than js",
    "version": "0.0.1",
    "icons": {
        "16": "images\/icon-enabled-16.png",
        "48": "images\/icon-enabled-48.png",
        "128": "images\/icon-enabled-128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ],
        "persistent": false
    },
    "page_action": [],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/jsfiddle.net\/*"
            ],
            "js": [
                "scripts\/jsfiddle-mixin.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "storage",
        "declarativeContent"
    ]
}