Github Enhanced Project Board

An enhanced UI for Github project boards

Qu'est-ce que Github Enhanced Project Board ?

Github Enhanced Project Board est une extension Chrome développée par Bluehouse Group, et sa fonction principale est "An enhanced UI for Github project boards".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Github Enhanced Project Board

Téléchargez les fichiers d'extension Github Enhanced Project Board au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Github Enhanced Project Board Github Enhanced Project Board
ID eidmccobchlljnlophmcjgmimneegidp
URL Officiel https://chromewebstore.google.com/detail/github-enhanced-project-b/eidmccobchlljnlophmcjgmimneegidp
Description An enhanced UI for Github project boards
Taille du Fichier 82.66 KB
Nombre d'Installations 80
Version Actuelle 1.4.1
Dernière Mise à Jour 2019-04-07
Date de Publication 2019-04-06
Évaluation 5.00/5 Total 1 Évaluations
Développeur Bluehouse Group
Type de Paiement free
Langues Prises en Charge 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"
    }
}