GifHub
Insert GIFs from Giphy.com into GitHub comments
Co je GifHub?
GifHub je rozšíření Chrome vyvinuté Andrew Levine, a jeho hlavní funkcí je „Insert GIFs from Giphy.com into GitHub comments“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření GifHub
Stáhněte si soubory rozšíření GifHub ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | |
ID | lponagpckglibniamicamklhfkoebpeb |
Oficiální URL | https://chrome.google.com/webstore/detail/gifhub/lponagpckglibniamicamklhfkoebpeb |
Popis | Insert GIFs from Giphy.com into GitHub comments |
Velikost souboru | 25.84 KB |
Počet instalací | 452 |
Aktuální Verze | 1.0.8 |
Poslední Aktualizace | 2016-05-24 |
Datum Vydání | 2016-05-24 |
Hodnocení | 3.29/5 Celkem 7 Hodnocení |
Vývojář | Andrew Levine |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/DrewML/GifHub |
URL Stránky Nápovědy | https://github.com/DrewML/GifHub/blob/master/README.md |
Podporované Jazyky | 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 } } |