Github Enhanced Project Board
An enhanced UI for Github project boards
Wat is Github Enhanced Project Board?
Github Enhanced Project Board is een Chrome-extensie ontwikkeld door Bluehouse Group, en de belangrijkste functie is "An enhanced UI for Github project boards".
Extensie Screenshots
Download het CRX-bestand van de extensie Github Enhanced Project Board
Download Github Enhanced Project Board-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Github Enhanced Project Board |
ID | eidmccobchlljnlophmcjgmimneegidp |
Officiële URL | https://chromewebstore.google.com/detail/github-enhanced-project-b/eidmccobchlljnlophmcjgmimneegidp |
Beschrijving | An enhanced UI for Github project boards |
Bestandsgrootte | 82.66 KB |
Aantal Installaties | 80 |
Huidige Versie | 1.4.1 |
Laatst Bijgewerkt | 2019-04-07 |
Publicatiedatum | 2019-04-06 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Bluehouse Group |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |