Gist Previewer

Preview gist html/js/css code.

O que é Gist Previewer?

Gist Previewer é uma extensão do Chrome desenvolvida por David Orr, e sua principal característica é "Preview gist html/js/css code.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Gist Previewer

Baixe arquivos de extensão Gist Previewer 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

                        Renders Gist repos that contain HTML, JavaScript, or CSS files.

Places a "Preview HTML" button in the top bar of each HTML file. Clicking the button renders that HTML file with all JavaScript and CSS files included.                    

Informações Básicas da Extensão

Nome Gist Previewer Gist Previewer
ID akkophfgoandjomabfeppbnbgmejaofc
URL Oficial https://chromewebstore.google.com/detail/gist-previewer/akkophfgoandjomabfeppbnbgmejaofc
Descrição Preview gist html/js/css code.
Tamanho do Arquivo 11.01 KB
Contagem de Instalações 92
Versão Atual 2.0.0
Última Atualização 2017-04-03
Data de Publicação 2017-04-02
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor David Orr
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/davidyorr/gist-previewer
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gist Previewer",
    "description": "Preview gist html\/js\/css code.",
    "version": "2.0.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "js\/gistpreviewer.js"
            ],
            "css": [
                "css\/gistpreviewer.css"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "icons": {
        "16": "img\/icon.png",
        "48": "img\/icon.png",
        "128": "img\/icon.png"
    },
    "manifest_version": 2
}