GifHub

Insert GIFs from Giphy.com into GitHub comments

Cos'è GifHub?

GifHub è un'estensione di Chrome sviluppata da Andrew Levine, e la sua funzione principale è "Insert GIFs from Giphy.com into GitHub comments".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione GifHub

Scarica i file di estensione GifHub 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

                        GitHub is awesome. GIFs are awesome.

1.0.8 (May 24, 2016): Fix bug preventing button from showing when editing a comment that was just added on a diff. Thanks to Paul Molluzzo for the fix.
1.0.7 (April 24, 2016): Improve page detection to prevent issues on non GH or GH Enterprise sites
1.0.6 (April 20, 2016): Fix issue caused by change in GitHub's JS                    

Informazioni di Base sull'Estensione

Nome GifHub GifHub
ID lponagpckglibniamicamklhfkoebpeb
URL Ufficiale https://chrome.google.com/webstore/detail/gifhub/lponagpckglibniamicamklhfkoebpeb
Descrizione Insert GIFs from Giphy.com into GitHub comments
Dimensione del File 25.84 KB
Conteggio Installazioni 452
Versione Corrente 1.0.8
Ultimo Aggiornamento 2016-05-24
Data di Pubblicazione 2016-05-24
Valutazione 3.29/5 Totale 7 Valutazioni
Sviluppatore Andrew Levine
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/DrewML/GifHub
URL della Pagina di Aiuto https://github.com/DrewML/GifHub/blob/master/README.md
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GifHub",
    "version": "1.0.8",
    "description": "Insert GIFs from Giphy.com into GitHub comments",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "inject.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "bundle.js",
        "extension.css"
    ],
    "permissions": [
        "https:\/\/api.giphy.com\/v1\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "peristent": false
    }
}