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 |
官方URL | 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 } |