Codeflower

Visualize repos on github.

Codeflower là gì?

Codeflower là một tiện ích mở rộng Chrome được phát triển bởi Jake Mensch, và tính năng chính của nó là "Visualize repos on github.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Codeflower

Tải xuống các tệp mở rộng Codeflower dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Codeflower Codeflower
ID mnlengnbfpfgcfdgfpkjekoaeophmmeh
URL Chính Thức https://chromewebstore.google.com/detail/codeflower/mnlengnbfpfgcfdgfpkjekoaeophmmeh
Mô tả Visualize repos on github.
Kích Thước Tệp 246 KB
Số Lần Cài Đặt 221
Phiên Bản Hiện Tại 1.0.7
Cập Nhật Lần Cuối 2022-04-26
Ngày Phát Hành 2020-06-28
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Jake Mensch
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/jmensch1/codeflower
URL Trang Trợ Giúp https://github.com/jmensch1/codeflower
Ngôn Ngữ Được Hỗ Trợ 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
}