gitphy
Put gifs in your Github issues and pull requests without leaving the textarea
O que é gitphy?
gitphy é uma extensão do Chrome desenvolvida por https://kevinformatics.com, e sua principal característica é "Put gifs in your Github issues and pull requests without leaving the textarea".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão gitphy
Baixe arquivos de extensão gitphy 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
Extends the markdown image syntax by allowing you to search for gifs right from Github textareas. Use the syntax ![](gif:) to search Giphy for gifs. Open source at: https://github.com/kevinwuhoo/gitphy.
Informações Básicas da Extensão
Nome | gitphy |
ID | kbnbfpmphfpcndlokabhemafnjhkcffc |
URL Oficial | https://chromewebstore.google.com/detail/gitphy/kbnbfpmphfpcndlokabhemafnjhkcffc |
Descrição | Put gifs in your Github issues and pull requests without leaving the textarea |
Tamanho do Arquivo | 86.94 KB |
Contagem de Instalações | 38 |
Versão Atual | 1.1.1 |
Última Atualização | 2020-10-15 |
Data de Publicação | 2020-07-24 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | https://kevinformatics.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | http://kevinformatics.com/gitphy |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "gitphy", "version": "1.1.1", "manifest_version": 2, "description": "Put gifs in your Github issues and pull requests without leaving the textarea", "author": "Kevin Wu", "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "css": [ "index.css" ], "js": [ "index.js" ], "run_at": "document_end" } ], "permissions": [ "https:\/\/github.com\/*", "https:\/\/*.giphy.com\/*" ], "web_accessible_resources": [ "giphy-attribution.png" ] } |