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”。

擴展截圖

screenshot

下載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.                    

擴展基本資訊

名稱 GitHub PR Check Status GitHub PR Check Status
ID ldddlenkajkonchccpkjapihmdgjgjop
官方網址 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
電子郵箱 [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"
        }
    }
}