Codeflower
Visualize repos on github.
Was ist Codeflower?
Codeflower ist eine Chrome-Erweiterung, die von Jake Mensch entwickelt wurde, und ihr Hauptmerkmal ist "Visualize repos on github.".
Erweiterungsscreenshots
Codeflower-Erweiterungs-CRX-Datei herunterladen
Laden Sie Codeflower-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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
Grundlegende Informationen zur Erweiterung
Name | Codeflower |
ID | mnlengnbfpfgcfdgfpkjekoaeophmmeh |
Offizielle URL | https://chromewebstore.google.com/detail/codeflower/mnlengnbfpfgcfdgfpkjekoaeophmmeh |
Beschreibung | Visualize repos on github. |
Dateigröße | 246 KB |
Installationsanzahl | 221 |
Aktuelle Version | 1.0.7 |
Letztes Update | 2022-04-26 |
Veröffentlichungsdatum | 2020-06-28 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | Jake Mensch |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/jmensch1/codeflower |
Hilfeseite URL | https://github.com/jmensch1/codeflower |
Unterstützte Sprachen | 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 } |