Show a preview for SVG files.

This extension allows the preview of SVG files on Trello

什么是Show a preview for SVG files.?

Show a preview for SVG files.是由marcorivm开发的Chrome扩展程序,该扩展的主要功能是“This extension allows the preview of SVG files on Trello”。

下载Show a preview for SVG files.扩展crx文件

下载Show a preview for SVG files.扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension shows a preview for SVG files on Trello. The preview is shown as if the svg file where a normal image.                    

扩展基本信息

名称 Show a preview for SVG files. Show a preview for SVG files.
ID gppigcihmfenphmfeklomdpfopfjgdhd
官方URL https://chrome.google.com/webstore/detail/show-a-preview-for-svg-fi/gppigcihmfenphmfeklomdpfopfjgdhd
简介 This extension allows the preview of SVG files on Trello
文件大小 32.31 KB
安装次数 79
当前版本 1.0
更新时间 2014-11-29
上架时间 2014-11-29
评分 4.00/5 共3次评分
开发者 marcorivm
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Show a preview for SVG files.",
    "description": "This extension allows the preview of SVG files on Trello",
    "version": "1.0",
    "page_action": {
        "default_title": "Trello SVG Preview"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/trello.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "svg.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/trello.com\/"
    ]
}