Fiddle Config

Adds functionality for persisting certain configuration selections on http://jsfiddle.net

Fiddle Configとは何ですか?

Fiddle Configはcanonによって開発されたChromeの拡張機能で、その主な機能は「Adds functionality for persisting certain configuration selections on http://jsfiddle.net」です。

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

Fiddle Config拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        *** updated to address jsFiddle's change to a particular input id

Adds a "default" button next to the following combo-boxes on jsfiddle's configuration panel:

Doc Type
Style Type
Script Type
JS Wrap
JS Library
External Resources

Clicking a "default" button will save the associated selection as a default value. Default selections will never supersede an existing fiddle's configuration; defaults are loaded only for new fiddles.

Settings are persisted through local storage and are particular to the registered jsfiddle user or, if unavailable, the client machine itself.

Initial idea credited to Robert Lemon http://sourcoder.blogspot.ca/                    

拡張機能の基本情報

名前 Fiddle Config Fiddle Config
ID magendaoiemdipeblnllmjhbelpopmgb
公式URL https://chromewebstore.google.com/detail/fiddle-config/magendaoiemdipeblnllmjhbelpopmgb
説明 Adds functionality for persisting certain configuration selections on http://jsfiddle.net
ファイルサイズ 22.08 KB
インストール数 178
現在のバージョン 0.0.2.4
最終更新日 2013-04-17
公開日 2013-04-16
評価 4.50/5 合計 2 レビュー
開発者 canon
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Adds functionality for persisting certain configuration selections on http:\/\/jsfiddle.net",
    "name": "Fiddle Config",
    "permissions": [
        "*:\/\/*.jsfiddle.net\/"
    ],
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.jsfiddle.net\/*"
            ],
            "js": [
                "main.js"
            ]
        }
    ],
    "manifest_version": 2,
    "version": "0.0.2.4"
}