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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        *** 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"
}