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
官方網址 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\/"
    ]
}