Codeflower
Visualize repos on github.
Apa itu Codeflower?
Codeflower adalah ekstensi Chrome yang dikembangkan oleh Jake Mensch, dan fitur utamanya adalah "Visualize repos on github.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Codeflower
Unduh file ekstensi Codeflower dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Codeflower |
ID | mnlengnbfpfgcfdgfpkjekoaeophmmeh |
URL Resmi | https://chromewebstore.google.com/detail/codeflower/mnlengnbfpfgcfdgfpkjekoaeophmmeh |
Deskripsi | Visualize repos on github. |
Ukuran File | 246 KB |
Jumlah Instalasi | 221 |
Versi Saat Ini | 1.0.7 |
Terakhir Diperbarui | 2022-04-26 |
Tanggal Publikasi | 2020-06-28 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | Jake Mensch |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/jmensch1/codeflower |
URL Halaman Bantuan | https://github.com/jmensch1/codeflower |
Bahasa yang Didukung | 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 } |