Codeflower
Visualize repos on github.
What is Codeflower?
Codeflower is a Chrome extension developed by Jake Mensch, and its main feature is "Visualize repos on github.".
Extension Screenshots
Download Codeflower Extension CRX File
Download Codeflower extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Codeflower |
ID | mnlengnbfpfgcfdgfpkjekoaeophmmeh |
Official URL | https://chromewebstore.google.com/detail/codeflower/mnlengnbfpfgcfdgfpkjekoaeophmmeh |
Description | Visualize repos on github. |
File Size | 246 KB |
Installation Count | 221 |
Current Version | 1.0.7 |
Last Updated | 2022-04-26 |
Publish Date | 2020-06-28 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Jake Mensch |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/jmensch1/codeflower |
Help Page URL | https://github.com/jmensch1/codeflower |
Supported Languages | 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 } |