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 |
Eメール | [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 } |