Codeflower
Visualize repos on github.
Co to jest Codeflower?
Codeflower to rozszerzenie Chrome opracowane przez Jake Mensch, a jego główną funkcją jest „Visualize repos on github.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Codeflower
Pobierz pliki rozszerzeń Codeflower w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Codeflower |
ID | mnlengnbfpfgcfdgfpkjekoaeophmmeh |
Oficjalny URL | https://chromewebstore.google.com/detail/codeflower/mnlengnbfpfgcfdgfpkjekoaeophmmeh |
Opis | Visualize repos on github. |
Rozmiar pliku | 246 KB |
Liczba instalacji | 221 |
Aktualna Wersja | 1.0.7 |
Ostatnia Aktualizacja | 2022-04-26 |
Data Publikacji | 2020-06-28 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | Jake Mensch |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/jmensch1/codeflower |
Adres URL Strony Pomocy | https://github.com/jmensch1/codeflower |
Obsługiwane Języki | 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 } |