Github Enhanced Project Board

An enhanced UI for Github project boards

什么是Github Enhanced Project Board?

Github Enhanced Project Board是由Bluehouse Group开发的Chrome扩展程序,该扩展的主要功能是“An enhanced UI for Github project boards”。

扩展截图

screenshot
screenshot

下载Github Enhanced Project Board扩展crx文件

下载Github Enhanced Project Board扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        An extension to improve the usability of Github project boards. The columns will become responsive and will not overflow off screen. The add column button is moved up to the controls row. There is a new issue button added to the controls. Clicking on issue title will open issue in new window instead of showing summary view.                    

扩展基本信息

名称 Github Enhanced Project Board Github Enhanced Project Board
ID eidmccobchlljnlophmcjgmimneegidp
官方URL https://chromewebstore.google.com/detail/github-enhanced-project-b/eidmccobchlljnlophmcjgmimneegidp
简介 An enhanced UI for Github project boards
文件大小 82.66 KB
安装次数 80
当前版本 1.4.1
更新时间 2019-04-07
上架时间 2019-04-06
评分 5.00/5 共1次评分
开发者 Bluehouse Group
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github Enhanced Project Board",
    "description": "An enhanced UI for Github project boards",
    "version": "1.4.1",
    "page_action": [],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.github.com\/*",
                "https:\/\/*.github.com\/*"
            ],
            "js": [
                "jquery.min.js",
                "github.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/github.png"
    ],
    "permissions": [
        "tabs"
    ],
    "icons": {
        "32": "images\/github.png"
    }
}