jsFiddle Player

Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox.

jsFiddle Playerคืออะไร?

jsFiddle Player เป็นส่วนขยายของ Chrome ที่พัฒนาโดย busterc และคุณลักษณะหลักของมันคือ "Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย jsFiddle Player

ดาวน์โหลดไฟล์ส่วนขยาย jsFiddle Player ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

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

                        jsFiddle is awesome, but sometimes you want to combine all your HTML, CSS & JS into a single HTML file (perhaps to save it to your local disk). jsFiddle Player does that, it simply adds a "play" button to the Omnibox so that you can pop open a new tab/window with the output combined into a single web page. That's it, simple & useful (at least for me)!                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ jsFiddle Player jsFiddle Player
ID acmoiaipblimhfnjejofmmfjkgpedcpd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/jsfiddle-player/acmoiaipblimhfnjejofmmfjkgpedcpd
คำอธิบาย Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox.
ขนาดไฟล์ 28.39 KB
จำนวนการติดตั้ง 673
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2012-05-15
วันที่เผยแพร่ 2012-05-15
คะแนน 3.50/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา busterc
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "jsFiddle Player",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Opens jsFiddle output to a single unified html page in a new window or tab with one click from the Omnibox.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_icon": "img\/icon-016.png",
        "default_title": "Play this fiddle"
    },
    "icons": {
        "16": "img\/icon-016.png",
        "48": "img\/icon-048.png",
        "128": "img\/icon-128.png"
    },
    "permissions": [
        "tabs",
        "http:\/\/jsfiddle.net\/*",
        "https:\/\/jsfiddle.net\/*"
    ]
}