GitHub Inline SVG

Shows an inline preview of SVG files on GitHub

Qu'est-ce que GitHub Inline SVG ?

GitHub Inline SVG est une extension Chrome développée par Zach Bruggeman, et sa fonction principale est "Shows an inline preview of SVG files on GitHub".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension GitHub Inline SVG

Téléchargez les fichiers d'extension GitHub Inline SVG au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom GitHub Inline SVG GitHub Inline SVG
ID jbfbnojdibndlopjgadibhcphchdbfkh
URL Officiel https://chromewebstore.google.com/detail/github-inline-svg/jbfbnojdibndlopjgadibhcphchdbfkh
Description Shows an inline preview of SVG files on GitHub
Taille du Fichier 10.42 KB
Nombre d'Installations 289
Version Actuelle 0.0.3
Dernière Mise à Jour 2014-08-26
Date de Publication 2014-08-26
Évaluation 5.00/5 Total 3 Évaluations
Développeur Zach Bruggeman
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/remixz/gh-inline-svg
URL de la Page d'Aide https://github.com/remixz/gh-inline-svg/issues
Langues Prises en Charge 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"
    }
}