CODEOWNERS Filter
Filter PR files by GitHub CODEOWNERS
什么是CODEOWNERS Filter?
CODEOWNERS Filter是由dounan开发的Chrome扩展程序,该扩展的主要功能是“Filter PR files by GitHub CODEOWNERS”。
扩展截图
下载CODEOWNERS Filter扩展crx文件
下载CODEOWNERS Filter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
                        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                     扩展基本信息
| 名称 |   |  
| 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\/*"
    ]
}  |  |