GifHub
Insert GIFs from Giphy.com into GitHub comments
Wat is GifHub?
GifHub is een Chrome-extensie ontwikkeld door Andrew Levine, en de belangrijkste functie is "Insert GIFs from Giphy.com into GitHub comments".
Extensie Screenshots
Download het CRX-bestand van de extensie GifHub
Download GifHub-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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
Basisinformatie over de Extensie
Naam | |
ID | lponagpckglibniamicamklhfkoebpeb |
Officiële URL | https://chrome.google.com/webstore/detail/gifhub/lponagpckglibniamicamklhfkoebpeb |
Beschrijving | Insert GIFs from Giphy.com into GitHub comments |
Bestandsgrootte | 25.84 KB |
Aantal Installaties | 452 |
Huidige Versie | 1.0.8 |
Laatst Bijgewerkt | 2016-05-24 |
Publicatiedatum | 2016-05-24 |
Beoordeling | 3.29/5 Totaal 7 Beoordelingen |
Ontwikkelaar | Andrew Levine |
Betalingswijze | free |
Extensiewebsite | https://github.com/DrewML/GifHub |
Help Pagina-URL | https://github.com/DrewML/GifHub/blob/master/README.md |
Ondersteunde Talen | 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 } } |