GitHub Review Filter
Chrome extension to filter files in GitHub code review using glob
什么是GitHub Review Filter?
GitHub Review Filter是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Chrome extension to filter files in GitHub code review using glob”。
扩展截图
下载GitHub Review Filter扩展crx文件
下载GitHub Review Filter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | GitHub Review Filter |
ID | gnpcfigiidmljgiidkhmmcgbfkolnacg |
官方URL | https://chromewebstore.google.com/detail/github-review-filter/gnpcfigiidmljgiidkhmmcgbfkolnacg |
简介 | Chrome extension to filter files in GitHub code review using glob |
文件大小 | 71.67 KB |
安装次数 | 43 |
当前版本 | 0.1.3 |
更新时间 | 2018-05-29 |
上架时间 | 2018-05-29 |
开发者 | Unknown |
付费类型 | free |
扩展官网 | https://github.com/andersonba/github-review-filter |
帮助页面URL | https://github.com/andersonba/github-review-filter/issues |
支持的语言 | 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'" } |