Github Enhanced Project Board

An enhanced UI for Github project boards

Cos'è Github Enhanced Project Board?

Github Enhanced Project Board è un'estensione di Chrome sviluppata da Bluehouse Group, e la sua funzione principale è "An enhanced UI for Github project boards".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Github Enhanced Project Board

Scarica i file di estensione Github Enhanced Project Board in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Github Enhanced Project Board Github Enhanced Project Board
ID eidmccobchlljnlophmcjgmimneegidp
URL Ufficiale https://chromewebstore.google.com/detail/github-enhanced-project-b/eidmccobchlljnlophmcjgmimneegidp
Descrizione An enhanced UI for Github project boards
Dimensione del File 82.66 KB
Conteggio Installazioni 80
Versione Corrente 1.4.1
Ultimo Aggiornamento 2019-04-07
Data di Pubblicazione 2019-04-06
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Bluehouse Group
Tipo di Pagamento free
Lingue Supportate 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"
    }
}