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
官方URL 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"
    }
}