GitHub Inline SVG

Shows an inline preview of SVG files on GitHub

Wat is GitHub Inline SVG?

GitHub Inline SVG is een Chrome-extensie ontwikkeld door Zach Bruggeman, en de belangrijkste functie is "Shows an inline preview of SVG files on GitHub".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie GitHub Inline SVG

Download GitHub Inline SVG-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam GitHub Inline SVG GitHub Inline SVG
ID jbfbnojdibndlopjgadibhcphchdbfkh
Officiële URL https://chromewebstore.google.com/detail/github-inline-svg/jbfbnojdibndlopjgadibhcphchdbfkh
Beschrijving Shows an inline preview of SVG files on GitHub
Bestandsgrootte 10.42 KB
Aantal Installaties 289
Huidige Versie 0.0.3
Laatst Bijgewerkt 2014-08-26
Publicatiedatum 2014-08-26
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar Zach Bruggeman
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/remixz/gh-inline-svg
Help Pagina-URL https://github.com/remixz/gh-inline-svg/issues
Ondersteunde Talen 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"
    }
}