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 |
官方網址 | 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'" } |