Gantt Viewer for Github Project

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

Qu'est-ce que Gantt Viewer for Github Project ?

Gantt Viewer for Github Project est une extension Chrome développée par PingCAP, et sa fonction principale est "Manage Github project with Gantt chart - Powered by PingCAP and TiDB".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Gantt Viewer for Github Project

Téléchargez les fichiers d'extension Gantt Viewer for Github Project au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Gantt Viewer for Github Project Gantt Viewer for Github Project
ID epmlnpbkbohmcdncnblilnafjcmgdlmi
URL Officiel https://chromewebstore.google.com/detail/gantt-viewer-for-github-p/epmlnpbkbohmcdncnblilnafjcmgdlmi
Description Manage Github project with Gantt chart - Powered by PingCAP and TiDB
Taille du Fichier 2.43 MB
Nombre d'Installations 379
Version Actuelle 0.6
Dernière Mise à Jour 2021-04-23
Date de Publication 2020-04-11
Évaluation 4.00/5 Total 1 Évaluations
Développeur PingCAP
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.pingcap.com
URL de la Page de Politique de Confidentialité https://en.pingcap.com/privacy-policy
Langues Prises en Charge 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'"
}