JSFiddle Auto Run & Save
This extension makes JSFiddle automatically run & save while typing, also adds a button to hide panels other than js
What is JSFiddle Auto Run & Save?
JSFiddle Auto Run & Save is a Chrome extension developed by kongyuyu, and its main feature is "This extension makes JSFiddle automatically run & save while typing, also adds a button to hide panels other than js".
Extension Screenshots
Download JSFiddle Auto Run & Save Extension CRX File
Download JSFiddle Auto Run & Save 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
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. Extension Basic Information
| Name | |
| ID | holmgemnafgpfmphccghdfljgaocpbfj |
| Official URL | https://chrome.google.com/webstore/detail/jsfiddle-auto-run-save/holmgemnafgpfmphccghdfljgaocpbfj |
| Description | This extension makes JSFiddle automatically run & save while typing, also adds a button to hide panels other than js |
| File Size | 24.39 KB |
| Installation Count | 58 |
| Current Version | 0.0.1 |
| Last Updated | 2018-02-13 |
| Publish Date | 2018-02-13 |
| Rating | 5.00/5 Total 1 Ratings |
| Developer | kongyuyu |
| Payment Type | free |
| Extension Website | https://github.com/kongyuyu/jsfiddle-chrome-extension |
| Help Page URL | https://github.com/kongyuyu/jsfiddle-chrome-extension/issues |
| Supported Languages | 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"
]
} | |