Github Enhanced Project Board
An enhanced UI for Github project boards
Was ist Github Enhanced Project Board?
Github Enhanced Project Board ist eine Chrome-Erweiterung, die von Bluehouse Group entwickelt wurde, und ihr Hauptmerkmal ist "An enhanced UI for Github project boards".
Erweiterungsscreenshots
Github Enhanced Project Board-Erweiterungs-CRX-Datei herunterladen
Laden Sie Github Enhanced Project Board-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Github Enhanced Project Board |
ID | eidmccobchlljnlophmcjgmimneegidp |
Offizielle URL | https://chromewebstore.google.com/detail/github-enhanced-project-b/eidmccobchlljnlophmcjgmimneegidp |
Beschreibung | An enhanced UI for Github project boards |
Dateigröße | 82.66 KB |
Installationsanzahl | 80 |
Aktuelle Version | 1.4.1 |
Letztes Update | 2019-04-07 |
Veröffentlichungsdatum | 2019-04-06 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Bluehouse Group |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |