GitHub Review Filter
Chrome extension to filter files in GitHub code review using glob
Co je GitHub Review Filter?
GitHub Review Filter je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „Chrome extension to filter files in GitHub code review using glob“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření GitHub Review Filter
Stáhněte si soubory rozšíření GitHub Review Filter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
                        Speed up how you review PRs filtering files based on glob pattern.
You can split your code review into parts based on:
- Components (eg: **/components/Header/**)
- Without tests (eg: !**/__tests__/**)
- File types (eg: *.js)
- No jest snapshot (eg: !*.snapshot)
- etc...
Also, share filters using links, example: "review my PR without tests"
Supported pages:
- Pull request
- Compare changes
Check more in https://github.com/andersonba/github-review-filter                     Základní Informace o Rozšíření
| Název |   |  
| ID | gnpcfigiidmljgiidkhmmcgbfkolnacg | 
| Oficiální URL | https://chromewebstore.google.com/detail/github-review-filter/gnpcfigiidmljgiidkhmmcgbfkolnacg | 
| Popis | Chrome extension to filter files in GitHub code review using glob | 
| Velikost souboru | 71.67 KB | 
| Počet instalací | 43 | 
| Aktuální Verze | 0.1.3 | 
| Poslední Aktualizace | 2018-05-29 | 
| Datum Vydání | 2018-05-29 | 
| Vývojář | Unknown | 
| Typ Platby | free | 
| Webové stránky Rozšíření | https://github.com/andersonba/github-review-filter | 
| URL Stránky Nápovědy | https://github.com/andersonba/github-review-filter/issues | 
| Podporované Jazyky | en-US | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Chrome extension to filter files in GitHub code review using glob",
    "version": "0.1.3",
    "name": "GitHub Review Filter",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*\/*\/pull\/*",
                "*:\/\/github.com\/*\/*\/compare\/*"
            ],
            "js": [
                "index.bundle.js"
            ]
        }
    ],
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}  |  |