GitHub Inline SVG

Shows an inline preview of SVG files on GitHub

Cos'è GitHub Inline SVG?

GitHub Inline SVG è un'estensione di Chrome sviluppata da Zach Bruggeman, e la sua funzione principale è "Shows an inline preview of SVG files on GitHub".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione GitHub Inline SVG

Scarica i file di estensione GitHub Inline SVG 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

                        Shows an inline preview of SVG files on GitHub. You can toggle between viewing the image, or the SVG code. Nifty!                    

Informazioni di Base sull'Estensione

Nome GitHub Inline SVG GitHub Inline SVG
ID jbfbnojdibndlopjgadibhcphchdbfkh
URL Ufficiale https://chromewebstore.google.com/detail/github-inline-svg/jbfbnojdibndlopjgadibhcphchdbfkh
Descrizione Shows an inline preview of SVG files on GitHub
Dimensione del File 10.42 KB
Conteggio Installazioni 289
Versione Corrente 0.0.3
Ultimo Aggiornamento 2014-08-26
Data di Pubblicazione 2014-08-26
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Zach Bruggeman
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/remixz/gh-inline-svg
URL della Pagina di Aiuto https://github.com/remixz/gh-inline-svg/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "GitHub Inline SVG",
    "description": "Shows an inline preview of SVG files on GitHub",
    "version": "0.0.3",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*"
            ],
            "js": [
                "index.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/github.com\/*"
    ],
    "icons": {
        "48": "icon_48.png",
        "128": "icon_128.png"
    }
}