Codeflower
Visualize repos on github.
什麼是Codeflower?
Codeflower是由Jake Mensch開發的Chrome擴展程式,該擴展的主要功能是“Visualize repos on github.”。
擴展截圖
下載Codeflower擴展crx文件
下載Codeflower擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | Codeflower |
ID | mnlengnbfpfgcfdgfpkjekoaeophmmeh |
官方網址 | https://chromewebstore.google.com/detail/codeflower/mnlengnbfpfgcfdgfpkjekoaeophmmeh |
簡介 | Visualize repos on github. |
檔案大小 | 246 KB |
安裝次數 | 221 |
目前版本 | 1.0.7 |
更新時間 | 2022-04-26 |
上架時間 | 2020-06-28 |
評分 | 5.00/5 共 2 次評分 |
開發者 | Jake Mensch |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/jmensch1/codeflower |
說明頁面URL | https://github.com/jmensch1/codeflower |
支援的語言 | 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 } |