Codeflower
Visualize repos on github.
O que é Codeflower?
Codeflower é uma extensão do Chrome desenvolvida por Jake Mensch, e sua principal característica é "Visualize repos on github.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Codeflower
Baixe arquivos de extensão Codeflower 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
The extension adds a "Codeflower" tab to the navigation bar on github.com. When you click on the tab, you'll see the repository, visualized as a d3 force-directed graph. The inner nodes in the graph correspond to the directories in the repository, and the outer (colored) nodes correspond to the files. The size of the outer nodes increases with the number of lines of code in the file, and the color of the outer nodes indicates what language the file is written in. More info on github! https://github.com/jmensch1/codeflower
Informações Básicas da Extensão
Nome | Codeflower |
ID | mnlengnbfpfgcfdgfpkjekoaeophmmeh |
URL Oficial | https://chromewebstore.google.com/detail/codeflower/mnlengnbfpfgcfdgfpkjekoaeophmmeh |
Descrição | Visualize repos on github. |
Tamanho do Arquivo | 246 KB |
Contagem de Instalações | 221 |
Versão Atual | 1.0.7 |
Última Atualização | 2022-04-26 |
Data de Publicação | 2020-06-28 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | Jake Mensch |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/jmensch1/codeflower |
URL da Página de Ajuda | https://github.com/jmensch1/codeflower |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Codeflower", "version": "1.0.7", "description": "Visualize repos on github.", "icons": { "48": "images\/icon128.png", "128": "images\/icon128.png" }, "author": "Jake Mensch", "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "js\/jquery.js", "js\/main.js" ] } ], "web_accessible_resources": [ "html\/frame.html" ], "offline_enabled": false } |