Github Enhanced Project Board
An enhanced UI for Github project boards
Co to jest Github Enhanced Project Board?
Github Enhanced Project Board to rozszerzenie Chrome opracowane przez Bluehouse Group, a jego główną funkcją jest „An enhanced UI for Github project boards”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Github Enhanced Project Board
Pobierz pliki rozszerzeń Github Enhanced Project Board w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Github Enhanced Project Board |
ID | eidmccobchlljnlophmcjgmimneegidp |
Oficjalny URL | https://chromewebstore.google.com/detail/github-enhanced-project-b/eidmccobchlljnlophmcjgmimneegidp |
Opis | An enhanced UI for Github project boards |
Rozmiar pliku | 82.66 KB |
Liczba instalacji | 80 |
Aktualna Wersja | 1.4.1 |
Ostatnia Aktualizacja | 2019-04-07 |
Data Publikacji | 2019-04-06 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Bluehouse Group |
Typ Płatności | free |
Obsługiwane Języki | 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" } } |