Github Enhanced Project Board

An enhanced UI for Github project boards

What is Github Enhanced Project Board?

Github Enhanced Project Board is a Chrome extension developed by Bluehouse Group, and its main feature is "An enhanced UI for Github project boards".

Extension Screenshots

screenshot
screenshot

Download Github Enhanced Project Board Extension CRX File

Download Github Enhanced Project Board extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Github Enhanced Project Board Github Enhanced Project Board
ID eidmccobchlljnlophmcjgmimneegidp
Official URL https://chromewebstore.google.com/detail/github-enhanced-project-b/eidmccobchlljnlophmcjgmimneegidp
Description An enhanced UI for Github project boards
File Size 82.66 KB
Installation Count 80
Current Version 1.4.1
Last Updated 2019-04-07
Publish Date 2019-04-06
Rating 5.00/5 Total 1 Ratings
Developer Bluehouse Group
Payment Type free
Supported Languages 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"
    }
}