GitHub Inline SVG

Shows an inline preview of SVG files on GitHub

O que é GitHub Inline SVG?

GitHub Inline SVG é uma extensão do Chrome desenvolvida por Zach Bruggeman, e sua principal característica é "Shows an inline preview of SVG files on GitHub".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão GitHub Inline SVG

Baixe arquivos de extensão GitHub Inline SVG no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome GitHub Inline SVG GitHub Inline SVG
ID jbfbnojdibndlopjgadibhcphchdbfkh
URL Oficial https://chromewebstore.google.com/detail/github-inline-svg/jbfbnojdibndlopjgadibhcphchdbfkh
Descrição Shows an inline preview of SVG files on GitHub
Tamanho do Arquivo 10.42 KB
Contagem de Instalações 289
Versão Atual 0.0.3
Última Atualização 2014-08-26
Data de Publicação 2014-08-26
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor Zach Bruggeman
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/remixz/gh-inline-svg
URL da Página de Ajuda https://github.com/remixz/gh-inline-svg/issues
Idiomas Suportados 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"
    }
}