Tab Size on GitHub
Make tab indented code more readable by forcing the tab size to 4 instead of 8
O que é Tab Size on GitHub?
Tab Size on GitHub é uma extensão do Chrome desenvolvida por Sindre Sorhus, e sua principal característica é "Make tab indented code more readable by forcing the tab size to 4 instead of 8".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Tab Size on GitHub
Baixe arquivos de extensão Tab Size on GitHub 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
Update: GitHub now has a tab size setting: https://github.blog/changelog/2021-09-21-tab-size-rendering-preference/ By default, in browsers, the tab character takes up 8 spaces in width. This makes tab-indented code hard to read. GitHub could have easily overridden this with a more reasonable number like 4, but they have chosen not to. Hence why this extension exists. It sets the tab width to 4.
Informações Básicas da Extensão
Nome | Tab Size on GitHub |
ID | ofjbgncegkdemndciafljngjbdpfmbkn |
URL Oficial | https://chromewebstore.google.com/detail/tab-size-on-github/ofjbgncegkdemndciafljngjbdpfmbkn |
Descrição | Make tab indented code more readable by forcing the tab size to 4 instead of 8 |
Tamanho do Arquivo | 5.09 KB |
Contagem de Instalações | 2,002 |
Versão Atual | 1.2.0 |
Última Atualização | 2021-09-26 |
Data de Publicação | 2018-09-24 |
Classificação | 4.96/5 Total de 23 Avaliações |
Desenvolvedor | Sindre Sorhus |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/sindresorhus/tab-size-on-github |
URL da Página de Ajuda | https://github.com/sindresorhus/tab-size-on-github/issues |
URL da Página de Política de Privacidade | https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tab Size on GitHub", "version": "1.2.0", "description": "Make tab indented code more readable by forcing the tab size to 4 instead of 8", "homepage_url": "https:\/\/github.com\/sindresorhus\/tab-size-on-github", "manifest_version": 2, "minimum_chrome_version": "36", "icons": { "128": "icon.png" }, "permissions": [ "https:\/\/github.com\/*\/*", "https:\/\/gist.github.com\/*\/*", "https:\/\/raw.githubusercontent.com\/*\/*" ], "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/github.com\/*\/*", "https:\/\/gist.github.com\/*\/*", "https:\/\/raw.githubusercontent.com\/*\/*" ], "css": [ "content.css" ] } ] } |