Github Annotator
Show user details and repository info in a tooltip.
O que é Github Annotator?
Github Annotator é uma extensão do Chrome desenvolvida por Mesut Tasci, e sua principal característica é "Show user details and repository info in a tooltip.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Github Annotator
Baixe arquivos de extensão Github Annotator 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
Show user,repo and gist informations in a tooltip at news feed. With this extension, you don't have to visit the user's or repos' own pages. Extension source code: https://github.com/mesuutt/github-annotator
Informações Básicas da Extensão
Nome | Github Annotator |
ID | epmbkocbfiejffcjahjhncadlipmdime |
URL Oficial | https://chromewebstore.google.com/detail/github-annotator/epmbkocbfiejffcjahjhncadlipmdime |
Descrição | Show user details and repository info in a tooltip. |
Tamanho do Arquivo | 81.68 KB |
Contagem de Instalações | 214 |
Versão Atual | 2.1 |
Última Atualização | 2017-10-22 |
Data de Publicação | 2017-10-22 |
Classificação | 4.50/5 Total de 2 Avaliações |
Desenvolvedor | Mesut Tasci |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | http://github.com/mesuutt/github-annotator |
URL da Página de Ajuda | https://github.com/mesuutt/github-annotator/issues |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github Annotator", "description": "Show user details and repository info in a tooltip.", "manifest_version": 2, "version": "2.1", "permissions": [ "storage" ], "content_scripts": [ { "js": [ "jquery-1.9.1.min.js", "contentscript.js" ], "css": [ "style.css" ], "matches": [ "https:\/\/github.com\/" ] } ], "background": { "scripts": [ "background.js" ] }, "options_page": "options.html", "icons": { "128": "icons\/icon128.png", "48": "icons\/icon48.png", "16": "icons\/icon16.png" } } |