CODEOWNERS Filter

Filter PR files by GitHub CODEOWNERS

What is CODEOWNERS Filter?

CODEOWNERS Filter is a Chrome extension developed by dounan, and its main feature is "Filter PR files by GitHub CODEOWNERS".

Extension Screenshots

screenshot

Download CODEOWNERS Filter Extension CRX File

Download CODEOWNERS Filter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name CODEOWNERS Filter CODEOWNERS Filter
ID cdbbcicplakoajgcidhcihkffapomdhi
Official URL https://chromewebstore.google.com/detail/codeowners-filter/cdbbcicplakoajgcidhcihkffapomdhi
Description Filter PR files by GitHub CODEOWNERS
File Size 16.52 KB
Installation Count 11
Current Version 2.0.4
Last Updated 2023-05-05
Publish Date 2018-08-14
Rating 5.00/5 Total 1 Ratings
Developer dounan
Email [email protected]
Payment Type free
Supported Languages 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\/*"
    ]
}