Fiddle Config
Adds functionality for persisting certain configuration selections on http://jsfiddle.net
What is Fiddle Config?
Fiddle Config is a Chrome extension developed by canon, and its main feature is "Adds functionality for persisting certain configuration selections on http://jsfiddle.net".
Extension Screenshots
Download Fiddle Config Extension CRX File
Download Fiddle Config extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
*** 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/
Extension Basic Information
Name | Fiddle Config |
ID | magendaoiemdipeblnllmjhbelpopmgb |
Official URL | https://chromewebstore.google.com/detail/fiddle-config/magendaoiemdipeblnllmjhbelpopmgb |
Description | Adds functionality for persisting certain configuration selections on http://jsfiddle.net |
File Size | 22.08 KB |
Installation Count | 178 |
Current Version | 0.0.2.4 |
Last Updated | 2013-04-17 |
Publish Date | 2013-04-16 |
Rating | 4.50/5 Total 2 Ratings |
Developer | canon |
Payment Type | free |
Supported Languages | 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" } |