Github Enhanced Project Board

An enhanced UI for Github project boards

Hvad er Github Enhanced Project Board?

Github Enhanced Project Board er en Chrome-udvidelse udviklet af Bluehouse Group, og dens hovedfunktion er "An enhanced UI for Github project boards".

Udvidelsesskærmbilleder

screenshot
screenshot

Download Github Enhanced Project Board-udvidelses-CRX-fil

Download Github Enhanced Project Board-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Github Enhanced Project Board Github Enhanced Project Board
ID eidmccobchlljnlophmcjgmimneegidp
Officiel URL https://chromewebstore.google.com/detail/github-enhanced-project-b/eidmccobchlljnlophmcjgmimneegidp
Beskrivelse An enhanced UI for Github project boards
Filstørrelse 82.66 KB
Antal Installationer 80
Nuværende Version 1.4.1
Senest Opdateret 2019-04-07
Udgivelsesdato 2019-04-06
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Bluehouse Group
Betalingsmetode free
Understøttede Sprog 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"
    }
}