Github Enhanced Project Board
An enhanced UI for Github project boards
什麼是Github Enhanced Project Board?
Github Enhanced Project Board是由Bluehouse Group開發的Chrome擴展程式,該擴展的主要功能是“An enhanced UI for Github project boards”。
擴展截圖
下載Github Enhanced Project Board擴展crx文件
下載Github Enhanced Project Board擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Github Enhanced Project Board |
ID | eidmccobchlljnlophmcjgmimneegidp |
官方網址 | https://chromewebstore.google.com/detail/github-enhanced-project-b/eidmccobchlljnlophmcjgmimneegidp |
簡介 | An enhanced UI for Github project boards |
檔案大小 | 82.66 KB |
安裝次數 | 80 |
目前版本 | 1.4.1 |
更新時間 | 2019-04-07 |
上架時間 | 2019-04-06 |
評分 | 5.00/5 共 1 次評分 |
開發者 | Bluehouse Group |
付費類型 | free |
支援的語言 | 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" } } |