GitHub Inline SVG

Shows an inline preview of SVG files on GitHub

Hvad er GitHub Inline SVG?

GitHub Inline SVG er en Chrome-udvidelse udviklet af Zach Bruggeman, og dens hovedfunktion er "Shows an inline preview of SVG files on GitHub".

Udvidelsesskærmbilleder

screenshot

Download GitHub Inline SVG-udvidelses-CRX-fil

Download GitHub Inline SVG-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn GitHub Inline SVG GitHub Inline SVG
ID jbfbnojdibndlopjgadibhcphchdbfkh
Officiel URL https://chromewebstore.google.com/detail/github-inline-svg/jbfbnojdibndlopjgadibhcphchdbfkh
Beskrivelse Shows an inline preview of SVG files on GitHub
Filstørrelse 10.42 KB
Antal Installationer 289
Nuværende Version 0.0.3
Senest Opdateret 2014-08-26
Udgivelsesdato 2014-08-26
Bedømmelse 5.00/5 Samlet 3 Bedømmelser
Udvikler Zach Bruggeman
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://github.com/remixz/gh-inline-svg
Hjælpeside-URL https://github.com/remixz/gh-inline-svg/issues
Understøttede Sprog 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"
    }
}