GifHub
Insert GIFs from Giphy.com into GitHub comments
Co to jest GifHub?
GifHub to rozszerzenie Chrome opracowane przez Andrew Levine, a jego główną funkcją jest „Insert GIFs from Giphy.com into GitHub comments”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia GifHub
Pobierz pliki rozszerzeń GifHub w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | lponagpckglibniamicamklhfkoebpeb |
Oficjalny URL | https://chrome.google.com/webstore/detail/gifhub/lponagpckglibniamicamklhfkoebpeb |
Opis | Insert GIFs from Giphy.com into GitHub comments |
Rozmiar pliku | 25.84 KB |
Liczba instalacji | 452 |
Aktualna Wersja | 1.0.8 |
Ostatnia Aktualizacja | 2016-05-24 |
Data Publikacji | 2016-05-24 |
Ocena | 3.29/5 Łącznie 7 Oceny |
Deweloper | Andrew Levine |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/DrewML/GifHub |
Adres URL Strony Pomocy | https://github.com/DrewML/GifHub/blob/master/README.md |
Obsługiwane Języki | 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 } } |