JSFiddle Auto Run & Save

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

ما هو JSFiddle Auto Run & Save؟

JSFiddle Auto Run & Save هو إضافة Chrome تم تطويرها بواسطة kongyuyu، والميزة الرئيسية لها هي "This extension makes JSFiddle automatically run & save while typing, also adds a button to hide panels other than js".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة JSFiddle Auto Run & Save

قم بتنزيل ملفات الامتداد JSFiddle Auto Run & Save بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم JSFiddle Auto Run & Save JSFiddle Auto Run & Save
ID holmgemnafgpfmphccghdfljgaocpbfj
عنوان URL الرسمي https://chrome.google.com/webstore/detail/jsfiddle-auto-run-save/holmgemnafgpfmphccghdfljgaocpbfj
الوصف This extension makes JSFiddle automatically run & save while typing, also adds a button to hide panels other than js
حجم الملف 24.39 KB
عدد التثبيتات 58
النسخة الحالية 0.0.1
آخر تحديث 2018-02-13
تاريخ النشر 2018-02-13
تقييم 5.00/5 مجموع تقييمات 1
المطور kongyuyu
نوع الدفع free
موقع الإضافة https://github.com/kongyuyu/jsfiddle-chrome-extension
عنوان صفحة المساعدة https://github.com/kongyuyu/jsfiddle-chrome-extension/issues
اللغات المدعومة 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"
    ]
}