LOC
This extension counts the lines of code (LOC) in the current GitHub repo on screen and displays that at the top of the page. This…
O que é LOC?
LOC é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "This extension counts the lines of code (LOC) in the current GitHub repo on screen and displays that at the top of the page. This…".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão LOC
Baixe arquivos de extensão LOC 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 counts the lines of code (LOC) in the current GitHub repo on screen and displays that at the top of the page. This extension only works on the top level page of the repo. That is, https://github.com/organization/repo-name/directory-name will show nothing, but https://github.com/organization/repo-name will show the total LOC for the entire repo.
Informações Básicas da Extensão
Nome | LOC |
ID | lmhpcmdjibbhkebfmbomehkfccllefnd |
URL Oficial | https://chromewebstore.google.com/detail/loc/lmhpcmdjibbhkebfmbomehkfccllefnd |
Descrição | This extension counts the lines of code (LOC) in the current GitHub repo on screen and displays that at the top of the page. This… |
Tamanho do Arquivo | 34.04 KB |
Contagem de Instalações | 1,032 |
Versão Atual | 0.2 |
Última Atualização | 2019-06-16 |
Data de Publicação | 2019-06-16 |
Classificação | 2.50/5 Total de 2 Avaliações |
Desenvolvedor | Unknown |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "LOC", "version": "0.2", "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "http:\/\/github.com\/*\/*" ], "js": [ "jquery-core.js", "content.js" ] } ], "background": { "scripts": [ "background.js" ] } } |