GifHub
Insert GIFs from Giphy.com into GitHub comments
O que é GifHub?
GifHub é uma extensão do Chrome desenvolvida por Andrew Levine, e sua principal característica é "Insert GIFs from Giphy.com into GitHub comments".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão GifHub
Baixe arquivos de extensão GifHub no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | |
ID | lponagpckglibniamicamklhfkoebpeb |
URL Oficial | https://chrome.google.com/webstore/detail/gifhub/lponagpckglibniamicamklhfkoebpeb |
Descrição | Insert GIFs from Giphy.com into GitHub comments |
Tamanho do Arquivo | 25.84 KB |
Contagem de Instalações | 452 |
Versão Atual | 1.0.8 |
Última Atualização | 2016-05-24 |
Data de Publicação | 2016-05-24 |
Classificação | 3.29/5 Total de 7 Avaliações |
Desenvolvedor | Andrew Levine |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/DrewML/GifHub |
URL da Página de Ajuda | https://github.com/DrewML/GifHub/blob/master/README.md |
Idiomas Suportados | 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 } } |