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
官方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
电子邮箱 [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"
        }
    }
}