GifHub
Insert GIFs from Giphy.com into GitHub comments
What is GifHub?
GifHub is a Chrome extension developed by Andrew Levine, and its main feature is "Insert GIFs from Giphy.com into GitHub comments".
Extension Screenshots
Download GifHub Extension CRX File
Download GifHub extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | |
ID | lponagpckglibniamicamklhfkoebpeb |
Official URL | https://chrome.google.com/webstore/detail/gifhub/lponagpckglibniamicamklhfkoebpeb |
Description | Insert GIFs from Giphy.com into GitHub comments |
File Size | 25.84 KB |
Installation Count | 452 |
Current Version | 1.0.8 |
Last Updated | 2016-05-24 |
Publish Date | 2016-05-24 |
Rating | 3.29/5 Total 7 Ratings |
Developer | Andrew Levine |
Payment Type | free |
Extension Website | https://github.com/DrewML/GifHub |
Help Page URL | https://github.com/DrewML/GifHub/blob/master/README.md |
Supported Languages | 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 } } |