GitHub PR Check Status
provides better UI for PR check status details
GitHub PR Check Statusとは何ですか?
GitHub PR Check Statusはbdkentによって開発されたChromeの拡張機能で、その主な機能は「provides better UI for PR check status details」です。
拡張機能のスクリーンショット
GitHub PR Check Status拡張機能のCRXファイルをダウンロード
GitHub PR Check Status拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
The current GitHub pull request UI has a tiny window to the CI Action "Checks". Many large projects have dozen of checks that run per push but there is no good way to see / filter all the actions. This browser extension provides a little icon on the bottom right that when clicked will display an overlay that lets one see and filter the checks. 拡張機能の基本情報
| 名前 | |
| ID | ldddlenkajkonchccpkjapihmdgjgjop |
| 公式URL | https://chromewebstore.google.com/detail/github-pr-check-status/ldddlenkajkonchccpkjapihmdgjgjop |
| 説明 | provides better UI for PR check status details |
| ファイルサイズ | 53.68 KB |
| インストール数 | 49 |
| 現在のバージョン | 1.0.2 |
| 最終更新日 | 2023-09-20 |
| 公開日 | 2023-08-13 |
| 開発者 | bdkent |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/bdkent/gh-pr-ext |
| ヘルプページのURL | https://github.com/bdkent/gh-pr-ext/issues |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "GitHub PR Check Status",
"description": "provides better UI for PR check status details",
"version": "1.0.2",
"content_scripts": [
{
"matches": [
"*:\/\/github.com\/*\/*\/pull\/*"
],
"js": [
"js\/content.js"
]
}
],
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "42.0"
}
}
} | |