JSFiddle Auto Run & Save
This extension makes JSFiddle automatically run & save while typing, also adds a button to hide panels other than js
Qu'est-ce que JSFiddle Auto Run & Save ?
JSFiddle Auto Run & Save est une extension Chrome développée par kongyuyu, et sa fonction principale est "This extension makes JSFiddle automatically run & save while typing, also adds a button to hide panels other than js".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension JSFiddle Auto Run & Save
Téléchargez les fichiers d'extension JSFiddle Auto Run & Save au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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. Informations de Base sur l'Extension
| Nom | |
| ID | holmgemnafgpfmphccghdfljgaocpbfj |
| URL Officiel | 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 |
| Taille du Fichier | 24.39 KB |
| Nombre d'Installations | 58 |
| Version Actuelle | 0.0.1 |
| Dernière Mise à Jour | 2018-02-13 |
| Date de Publication | 2018-02-13 |
| Évaluation | 5.00/5 Total 1 Évaluations |
| Développeur | kongyuyu |
| Type de Paiement | free |
| Site Web de l'Extension | https://github.com/kongyuyu/jsfiddle-chrome-extension |
| URL de la Page d'Aide | https://github.com/kongyuyu/jsfiddle-chrome-extension/issues |
| Langues Prises en Charge | 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"
]
} | |