Show a preview for SVG files.

This extension allows the preview of SVG files on Trello

Cos'è Show a preview for SVG files.?

Show a preview for SVG files. è un'estensione di Chrome sviluppata da marcorivm, e la sua funzione principale è "This extension allows the preview of SVG files on Trello".

Scarica il file CRX dell'estensione Show a preview for SVG files.

Scarica i file di estensione Show a preview for SVG files. in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Show a preview for SVG files. Show a preview for SVG files.
ID gppigcihmfenphmfeklomdpfopfjgdhd
URL Ufficiale https://chrome.google.com/webstore/detail/show-a-preview-for-svg-fi/gppigcihmfenphmfeklomdpfopfjgdhd
Descrizione This extension allows the preview of SVG files on Trello
Dimensione del File 32.31 KB
Conteggio Installazioni 79
Versione Corrente 1.0
Ultimo Aggiornamento 2014-11-29
Data di Pubblicazione 2014-11-29
Valutazione 4.00/5 Totale 3 Valutazioni
Sviluppatore marcorivm
Tipo di Pagamento free
Lingue Supportate 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\/"
    ]
}