EZTM
Chrome extension that helps you to do LGTM with fancy gifs.
O que é EZTM?
EZTM é uma extensão do Chrome desenvolvida por kakudenbuzou, e sua principal característica é "Chrome extension that helps you to do LGTM with fancy gifs.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão EZTM
Baixe arquivos de extensão EZTM 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
This extension helps you do LGTM with fancy gifs on GitHub. # How to use 1. Focus on text area. 2. Right click to show context menu. 3. Click "Insert LGTM gif". 4. That's it! "shift + cmd + v" is a shortcut command to insert LGTM gif. You can change the command if you want. (chrome://extensions/shortcuts)
Informações Básicas da Extensão
Nome | EZTM |
ID | pilidjngjpaijlblpfdncckldgecngak |
URL Oficial | https://chromewebstore.google.com/detail/eztm/pilidjngjpaijlblpfdncckldgecngak |
Descrição | Chrome extension that helps you to do LGTM with fancy gifs. |
Tamanho do Arquivo | 7.89 KB |
Contagem de Instalações | 32 |
Versão Atual | 0.1.0 |
Última Atualização | 2023-01-14 |
Data de Publicação | 2022-11-23 |
Desenvolvedor | kakudenbuzou |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/kakudenbuzo/eztm |
URL da Página de Ajuda | https://github.com/kakudenbuzo/eztm |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "EZTM", "description": "Chrome extension that helps you to do LGTM with fancy gifs.", "version": "0.1.0", "icons": { "16": "image\/icon16.png", "48": "image\/icon48.png", "128": "image\/icon128.png" }, "permissions": [ "contextMenus" ], "background": { "service_worker": "js\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "run_at": "document_idle", "all_frames": true, "js": [ "js\/contentScript.js" ] } ], "commands": { "closeSidebar": { "suggested_key": { "default": "Ctrl+Shift+V" }, "description": "Insert LGTM gif" } } } |