Codeflower
Visualize repos on github.
Vad är Codeflower?
Codeflower är en Chrome-tillägg utvecklad av Jake Mensch, och dess huvudfunktion är "Visualize repos on github.".
Tilläggsskärmbilder
Ladda ner Codeflower-förlängningens CRX-fil
Ladda ner Codeflower-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | Codeflower |
ID | mnlengnbfpfgcfdgfpkjekoaeophmmeh |
Officiell webbadress | https://chromewebstore.google.com/detail/codeflower/mnlengnbfpfgcfdgfpkjekoaeophmmeh |
Beskrivning | Visualize repos on github. |
Filstorlek | 246 KB |
Antal Installationer | 221 |
Aktuell Version | 1.0.7 |
Senast Uppdaterad | 2022-04-26 |
Publiceringsdatum | 2020-06-28 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | Jake Mensch |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/jmensch1/codeflower |
Hjälpsida URL | https://github.com/jmensch1/codeflower |
Stödda Språk | 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 } |