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”。
扩展截图
下载Gantt Viewer for Github Project扩展crx文件
下载Gantt Viewer for Github Project扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
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'" } |