Fiddle Config

Adds functionality for persisting certain configuration selections on http://jsfiddle.net

ما هو Fiddle Config؟

Fiddle Config هو إضافة Chrome تم تطويرها بواسطة canon، والميزة الرئيسية لها هي "Adds functionality for persisting certain configuration selections on http://jsfiddle.net".

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

تحميل ملف CRX للإضافة Fiddle Config

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

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

                        *** 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/                    

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

الاسم Fiddle Config Fiddle Config
ID magendaoiemdipeblnllmjhbelpopmgb
عنوان URL الرسمي https://chromewebstore.google.com/detail/fiddle-config/magendaoiemdipeblnllmjhbelpopmgb
الوصف Adds functionality for persisting certain configuration selections on http://jsfiddle.net
حجم الملف 22.08 KB
عدد التثبيتات 178
النسخة الحالية 0.0.2.4
آخر تحديث 2013-04-17
تاريخ النشر 2013-04-16
تقييم 4.50/5 مجموع تقييمات 2
المطور canon
نوع الدفع free
اللغات المدعومة 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"
}