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\/"
    ]
}