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 |
公式URL | 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" } } |