GitHub Review Filter
Chrome extension to filter files in GitHub code review using glob
What is GitHub Review Filter?
GitHub Review Filter is a Chrome extension developed by Unknown, and its main feature is "Chrome extension to filter files in GitHub code review using glob".
Extension Screenshots
Download GitHub Review Filter Extension CRX File
Download GitHub Review 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
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
Extension Basic Information
Name | GitHub Review Filter |
ID | gnpcfigiidmljgiidkhmmcgbfkolnacg |
Official URL | https://chromewebstore.google.com/detail/github-review-filter/gnpcfigiidmljgiidkhmmcgbfkolnacg |
Description | Chrome extension to filter files in GitHub code review using glob |
File Size | 71.67 KB |
Installation Count | 43 |
Current Version | 0.1.3 |
Last Updated | 2018-05-29 |
Publish Date | 2018-05-29 |
Developer | Unknown |
Payment Type | free |
Extension Website | https://github.com/andersonba/github-review-filter |
Help Page URL | https://github.com/andersonba/github-review-filter/issues |
Supported Languages | 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'" } |