CODEOWNERS Filter

Filter PR files by GitHub CODEOWNERS

CODEOWNERS Filter란 무엇입니까?

CODEOWNERS Filter은(는) dounan에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Filter PR files by GitHub CODEOWNERS"입니다.

확장 프로그램 스크린샷

screenshot

CODEOWNERS Filter 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Chrome extension to filter PR files by GitHub CODEOWNERS.

Features:
- No personal access token needed!
- Supports GitHub teams
- Works with private repos

The extension is open sourced and can be found here: https://github.com/dounan/codeowners-chrome

Icon made by Freepik from www.flaticon.com is licensed by CC 3.0 BY                    

확장 프로그램 기본 정보

이름 CODEOWNERS Filter CODEOWNERS Filter
ID cdbbcicplakoajgcidhcihkffapomdhi
공식 URL https://chromewebstore.google.com/detail/codeowners-filter/cdbbcicplakoajgcidhcihkffapomdhi
설명 Filter PR files by GitHub CODEOWNERS
파일 크기 16.52 KB
설치 횟수 11
현재 버전 2.0.4
최근 업데이트 2023-05-05
출시 날짜 2018-08-14
평점 5.00/5 총 1 개의 평점
개발자 dounan
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Filter PR files by GitHub CODEOWNERS",
    "version": "2.0.4",
    "name": "CODEOWNERS Filter",
    "background": {
        "scripts": [
            "background.bundle.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": {
            "16": "browser-icon-16.png",
            "24": "browser-icon-24.png",
            "32": "browser-icon-32.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "css": [],
            "js": [
                "content.bundle.js"
            ]
        }
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "manifest_version": 2,
    "permissions": [
        "webNavigation",
        "*:\/\/github.com\/*"
    ]
}