Gantt Viewer for Github Project

Manage Github project with Gantt chart - Powered by PingCAP and TiDB

Gantt Viewer for Github Project là gì?

Gantt Viewer for Github Project là một tiện ích mở rộng Chrome được phát triển bởi PingCAP, và tính năng chính của nó là "Manage Github project with Gantt chart - Powered by PingCAP and TiDB".

Ả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 Gantt Viewer for Github Project

Tải xuống các tệp mở rộng Gantt Viewer for Github Project 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

                        Manage Github project with Gantt chart !

Usage:
1. Create a project of your repo
2. Create an issue and link this issue to this newly created project
3. Open popup to set issue data and progress by clicking: "Set Issue Gantt Meta"
4. Open your repo from popup by just clicking it

Open user guide to read more about step-by-step usage.

---
Powered by PingCAP
https://pingcap.com/
TiDB - Tackling MySQL Scalability with TiDB, the most actively developed open source NewSQL database on GitHub                    

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

Tên Gantt Viewer for Github Project Gantt Viewer for Github Project
ID epmlnpbkbohmcdncnblilnafjcmgdlmi
URL Chính Thức https://chromewebstore.google.com/detail/gantt-viewer-for-github-p/epmlnpbkbohmcdncnblilnafjcmgdlmi
Mô tả Manage Github project with Gantt chart - Powered by PingCAP and TiDB
Kích Thước Tệp 2.43 MB
Số Lần Cài Đặt 379
Phiên Bản Hiện Tại 0.6
Cập Nhật Lần Cuối 2021-04-23
Ngày Phát Hành 2020-04-11
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển PingCAP
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.pingcap.com
URL Trang Chính Sách Bảo Mật https://en.pingcap.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gantt Viewer for Github Project",
    "version": "0.6",
    "description": "Manage Github project with Gantt chart - Powered by PingCAP and TiDB",
    "permissions": [
        "storage",
        "activeTab",
        "http:\/\/github.com\/*",
        "https:\/\/github.com\/*",
        "http:\/\/api.github.com\/*",
        "https:\/\/api.github.com\/*"
    ],
    "options_page": "dist\/index.html",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "dist\/popup.html",
        "default_icon": {
            "16": "icons\/gantt16.png",
            "32": "icons\/gantt32.png",
            "64": "icons\/gantt64.png",
            "128": "icons\/gantt128.png"
        }
    },
    "icons": {
        "16": "icons\/gantt16.png",
        "32": "icons\/gantt32.png",
        "64": "icons\/gantt64.png",
        "128": "icons\/gantt128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}