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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    }
}