Gist Previewer

Preview gist html/js/css code.

什麼是Gist Previewer?

Gist Previewer是由David Orr開發的Chrome擴展程式,該擴展的主要功能是“Preview gist html/js/css code.”。

擴展截圖

screenshot
screenshot

下載Gist Previewer擴展crx文件

下載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
官方網址 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
}