Gist Previewer

Preview gist html/js/css code.

Cos'è Gist Previewer?

Gist Previewer è un'estensione di Chrome sviluppata da David Orr, e la sua funzione principale è "Preview gist html/js/css code.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Gist Previewer

Scarica i file di estensione Gist Previewer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Gist Previewer Gist Previewer
ID akkophfgoandjomabfeppbnbgmejaofc
URL Ufficiale https://chromewebstore.google.com/detail/gist-previewer/akkophfgoandjomabfeppbnbgmejaofc
Descrizione Preview gist html/js/css code.
Dimensione del File 11.01 KB
Conteggio Installazioni 92
Versione Corrente 2.0.0
Ultimo Aggiornamento 2017-04-03
Data di Pubblicazione 2017-04-02
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore David Orr
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/davidyorr/gist-previewer
Lingue Supportate 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
}