Gist Previewer

Preview gist html/js/css code.

Gist Previewerคืออะไร?

Gist Previewer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย David Orr และคุณลักษณะหลักของมันคือ "Preview gist html/js/css code."

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

screenshot
screenshot

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

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

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

                        Renders Gist repos that contain HTML, JavaScript, or CSS files.

Places a "Preview HTML" button in the top bar of each HTML file. Clicking the button renders that HTML file with all JavaScript and CSS files included.                    

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

ชื่อ Gist Previewer Gist Previewer
ID akkophfgoandjomabfeppbnbgmejaofc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/gist-previewer/akkophfgoandjomabfeppbnbgmejaofc
คำอธิบาย Preview gist html/js/css code.
ขนาดไฟล์ 11.01 KB
จำนวนการติดตั้ง 92
เวอร์ชันปัจจุบัน 2.0.0
อัปเดตครั้งล่าสุด 2017-04-03
วันที่เผยแพร่ 2017-04-02
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา David Orr
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/davidyorr/gist-previewer
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gist Previewer",
    "description": "Preview gist html\/js\/css code.",
    "version": "2.0.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "js\/gistpreviewer.js"
            ],
            "css": [
                "css\/gistpreviewer.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "icons": {
        "16": "img\/icon.png",
        "48": "img\/icon.png",
        "128": "img\/icon.png"
    },
    "manifest_version": 2
}