CodeTree

Code tree for Github, GitHub Enterprise and Gitee

CodeTree là gì?

CodeTree là một tiện ích mở rộng Chrome được phát triển bởi gabearwin, và tính năng chính của nó là "Code tree for Github, GitHub Enterprise and Gitee".

Ả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 CodeTree

Tải xuống các tệp mở rộng CodeTree 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

                        Based on Octotree development.

All files in the current git repository are displayed in a file tree.

Currently supports Github, GitHub Enterprise and Gitee.                    

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

Tên CodeTree CodeTree
ID keecdmdfhddgmiclpcmhgeamfaecamll
URL Chính Thức https://chromewebstore.google.com/detail/codetree/keecdmdfhddgmiclpcmhgeamfaecamll
Mô tả Code tree for Github, GitHub Enterprise and Gitee
Kích Thước Tệp 423 KB
Số Lần Cài Đặt 711
Phiên Bản Hiện Tại 1.5.0
Cập Nhật Lần Cuối 2019-05-21
Ngày Phát Hành 2019-05-20
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển gabearwin
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "CodeTree",
    "version": "1.5.0",
    "description": "Code tree for Github, GitHub Enterprise and Gitee",
    "homepage_url": "http:\/\/home.ustc.edu.cn\/~sa517422\/",
    "author": "GABEARWIN",
    "manifest_version": 2,
    "minimum_chrome_version": "60",
    "icons": {
        "128": "icons\/icon128.png"
    },
    "permissions": [
        "https:\/\/api.github.com\/*",
        "https:\/\/assets.gitee.com\/*",
        "storage"
    ],
    "optional_permissions": [
        ""
    ],
    "web_accessible_resources": [
        "*.woff2",
        "*.png",
        "*.gif"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gitee.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ]
}