GifHub

Insert GIFs from Giphy.com into GitHub comments

Qu'est-ce que GifHub ?

GifHub est une extension Chrome développée par Andrew Levine, et sa fonction principale est "Insert GIFs from Giphy.com into GitHub comments".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension GifHub

Téléchargez les fichiers d'extension GifHub au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom GifHub GifHub
ID lponagpckglibniamicamklhfkoebpeb
URL Officiel https://chrome.google.com/webstore/detail/gifhub/lponagpckglibniamicamklhfkoebpeb
Description Insert GIFs from Giphy.com into GitHub comments
Taille du Fichier 25.84 KB
Nombre d'Installations 452
Version Actuelle 1.0.8
Dernière Mise à Jour 2016-05-24
Date de Publication 2016-05-24
Évaluation 3.29/5 Total 7 Évaluations
Développeur Andrew Levine
Type de Paiement free
Site Web de l'Extension https://github.com/DrewML/GifHub
URL de la Page d'Aide https://github.com/DrewML/GifHub/blob/master/README.md
Langues Prises en Charge 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
    }
}