Show a preview for SVG files.

This extension allows the preview of SVG files on Trello

Was ist Show a preview for SVG files.?

Show a preview for SVG files. ist eine Chrome-Erweiterung, die von marcorivm entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows the preview of SVG files on Trello".

Show a preview for SVG files.-Erweiterungs-CRX-Datei herunterladen

Laden Sie Show a preview for SVG files.-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Show a preview for SVG files. Show a preview for SVG files.
ID gppigcihmfenphmfeklomdpfopfjgdhd
Offizielle URL https://chrome.google.com/webstore/detail/show-a-preview-for-svg-fi/gppigcihmfenphmfeklomdpfopfjgdhd
Beschreibung This extension allows the preview of SVG files on Trello
Dateigröße 32.31 KB
Installationsanzahl 79
Aktuelle Version 1.0
Letztes Update 2014-11-29
Veröffentlichungsdatum 2014-11-29
Bewertung 4.00/5 Insgesamt 3 Bewertungen
Entwickler marcorivm
Zahlungsart free
Unterstützte Sprachen 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\/"
    ]
}