GitHub Inline SVG

Shows an inline preview of SVG files on GitHub

什麼是GitHub Inline SVG?

GitHub Inline SVG是由Zach Bruggeman開發的Chrome擴展程式,該擴展的主要功能是“Shows an inline preview of SVG files on GitHub”。

擴展截圖

screenshot

下載GitHub Inline SVG擴展crx文件

下載GitHub Inline SVG擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Shows an inline preview of SVG files on GitHub. You can toggle between viewing the image, or the SVG code. Nifty!                    

擴展基本資訊

名稱 GitHub Inline SVG GitHub Inline SVG
ID jbfbnojdibndlopjgadibhcphchdbfkh
官方網址 https://chromewebstore.google.com/detail/github-inline-svg/jbfbnojdibndlopjgadibhcphchdbfkh
簡介 Shows an inline preview of SVG files on GitHub
檔案大小 10.42 KB
安裝次數 289
目前版本 0.0.3
更新時間 2014-08-26
上架時間 2014-08-26
評分 5.00/5 共 3 次評分
開發者 Zach Bruggeman
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/remixz/gh-inline-svg
說明頁面URL https://github.com/remixz/gh-inline-svg/issues
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Inline SVG",
    "description": "Shows an inline preview of SVG files on GitHub",
    "version": "0.0.3",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "index.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/github.com\/*"
    ],
    "icons": {
        "48": "icon_48.png",
        "128": "icon_128.png"
    }
}