Github Tab Size Manager
Use this extension to view git files with tab size specified
O que é Github Tab Size Manager?
Github Tab Size Manager é uma extensão do Chrome desenvolvida por Namandeep Singh Chugh, e sua principal característica é "Use this extension to view git files with tab size specified".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Github Tab Size Manager
Baixe arquivos de extensão Github Tab Size Manager 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
Change tab size (from options menu) while viewing code on github.com or gist.github.com
Informações Básicas da Extensão
Nome | Github Tab Size Manager |
ID | enjegllgfhbkappebfdbgheefocllglo |
URL Oficial | https://chromewebstore.google.com/detail/github-tab-size-manager/enjegllgfhbkappebfdbgheefocllglo |
Descrição | Use this extension to view git files with tab size specified |
Tamanho do Arquivo | 506 KB |
Contagem de Instalações | 17 |
Versão Atual | 1.5 |
Última Atualização | 2017-03-17 |
Data de Publicação | 2017-03-17 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Namandeep Singh Chugh |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Github Tab Size Manager", "version": "1.5", "manifest_version": 2, "icons": { "128": "images\/icon.png" }, "options_page": "options.html", "description": "Use this extension to view git files with tab size specified", "permissions": [ "storage", "*:\/\/gist.github.com\/*", "*:\/\/github.com\/*", "tabs", "webNavigation" ], "content_scripts": [ { "matches": [ "*:\/\/github.com\/*", "*:\/\/gist.github.com\/*" ], "js": [ "js\/jquery-3.1.1.min.js", "js\/content.js" ] } ], "background": { "scripts": [ "js\/background.js" ] }, "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'" } |