Gantt Viewer for Github Project

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

Gantt Viewer for Github Project란 무엇입니까?

Gantt Viewer for Github Project은(는) PingCAP에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Manage Github project with Gantt chart - Powered by PingCAP and TiDB"입니다.

확장 프로그램 스크린샷

screenshot

Gantt Viewer for Github Project 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Gantt Viewer for Github Project Gantt Viewer for Github Project
ID epmlnpbkbohmcdncnblilnafjcmgdlmi
공식 URL https://chromewebstore.google.com/detail/gantt-viewer-for-github-p/epmlnpbkbohmcdncnblilnafjcmgdlmi
설명 Manage Github project with Gantt chart - Powered by PingCAP and TiDB
파일 크기 2.43 MB
설치 횟수 379
현재 버전 0.6
최근 업데이트 2021-04-23
출시 날짜 2020-04-11
평점 4.00/5 총 1 개의 평점
개발자 PingCAP
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.pingcap.com
개인정보 보호 정책 페이지 URL https://en.pingcap.com/privacy-policy
지원되는 언어 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'"
}