Fiddle Config

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

Cos'è Fiddle Config?

Fiddle Config è un'estensione di Chrome sviluppata da canon, e la sua funzione principale è "Adds functionality for persisting certain configuration selections on http://jsfiddle.net".

Screenshot dell'Estensione

Scarica il file CRX dell'estensione Fiddle Config

Scarica i file di estensione Fiddle Config in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        *** 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/                    

Informazioni di Base sull'Estensione

Nome Fiddle Config Fiddle Config
ID magendaoiemdipeblnllmjhbelpopmgb
URL Ufficiale https://chromewebstore.google.com/detail/fiddle-config/magendaoiemdipeblnllmjhbelpopmgb
Descrizione Adds functionality for persisting certain configuration selections on http://jsfiddle.net
Dimensione del File 22.08 KB
Conteggio Installazioni 178
Versione Corrente 0.0.2.4
Ultimo Aggiornamento 2013-04-17
Data di Pubblicazione 2013-04-16
Valutazione 4.50/5 Totale 2 Valutazioni
Sviluppatore canon
Tipo di Pagamento free
Lingue Supportate 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"
}