JSFiddle Auto Run & Save

This extension makes JSFiddle automatically run & save while typing, also adds a button to hide panels other than js

Was ist JSFiddle Auto Run & Save?

JSFiddle Auto Run & Save ist eine Chrome-Erweiterung, die von kongyuyu entwickelt wurde, und ihr Hauptmerkmal ist "This extension makes JSFiddle automatically run & save while typing, also adds a button to hide panels other than js".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

JSFiddle Auto Run & Save-Erweiterungs-CRX-Datei herunterladen

Laden Sie JSFiddle Auto Run & Save-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name JSFiddle Auto Run & Save JSFiddle Auto Run & Save
ID holmgemnafgpfmphccghdfljgaocpbfj
Offizielle URL https://chrome.google.com/webstore/detail/jsfiddle-auto-run-save/holmgemnafgpfmphccghdfljgaocpbfj
Beschreibung This extension makes JSFiddle automatically run & save while typing, also adds a button to hide panels other than js
Dateigröße 24.39 KB
Installationsanzahl 58
Aktuelle Version 0.0.1
Letztes Update 2018-02-13
Veröffentlichungsdatum 2018-02-13
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler kongyuyu
Zahlungsart free
Erweiterungswebsite https://github.com/kongyuyu/jsfiddle-chrome-extension
Hilfeseite URL https://github.com/kongyuyu/jsfiddle-chrome-extension/issues
Unterstützte Sprachen 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"
    ]
}