Fiddle Config

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

Wat is Fiddle Config?

Fiddle Config is een Chrome-extensie ontwikkeld door canon, en de belangrijkste functie is "Adds functionality for persisting certain configuration selections on http://jsfiddle.net".

Extensie Screenshots

Download het CRX-bestand van de extensie Fiddle Config

Download Fiddle Config-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Fiddle Config Fiddle Config
ID magendaoiemdipeblnllmjhbelpopmgb
Officiële URL https://chromewebstore.google.com/detail/fiddle-config/magendaoiemdipeblnllmjhbelpopmgb
Beschrijving Adds functionality for persisting certain configuration selections on http://jsfiddle.net
Bestandsgrootte 22.08 KB
Aantal Installaties 178
Huidige Versie 0.0.2.4
Laatst Bijgewerkt 2013-04-17
Publicatiedatum 2013-04-16
Beoordeling 4.50/5 Totaal 2 Beoordelingen
Ontwikkelaar canon
Betalingswijze free
Ondersteunde Talen 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"
}