Show a preview for SVG files.

This extension allows the preview of SVG files on Trello

Apa itu Show a preview for SVG files.?

Show a preview for SVG files. adalah ekstensi Chrome yang dikembangkan oleh marcorivm, dan fitur utamanya adalah "This extension allows the preview of SVG files on Trello".

Unduh Berkas CRX Ekstensi Show a preview for SVG files.

Unduh file ekstensi Show a preview for SVG files. dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Show a preview for SVG files. Show a preview for SVG files.
ID gppigcihmfenphmfeklomdpfopfjgdhd
URL Resmi https://chrome.google.com/webstore/detail/show-a-preview-for-svg-fi/gppigcihmfenphmfeklomdpfopfjgdhd
Deskripsi This extension allows the preview of SVG files on Trello
Ukuran File 32.31 KB
Jumlah Instalasi 79
Versi Saat Ini 1.0
Terakhir Diperbarui 2014-11-29
Tanggal Publikasi 2014-11-29
Penilaian 4.00/5 Total 3 Penilaian
Pengembang marcorivm
Tipe Pembayaran free
Bahasa yang Didukung 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\/"
    ]
}