GitHub Review Filter
Chrome extension to filter files in GitHub code review using glob
Co to jest GitHub Review Filter?
GitHub Review Filter to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Chrome extension to filter files in GitHub code review using glob”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia GitHub Review Filter
Pobierz pliki rozszerzeń GitHub Review Filter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | GitHub Review Filter |
ID | gnpcfigiidmljgiidkhmmcgbfkolnacg |
Oficjalny URL | https://chromewebstore.google.com/detail/github-review-filter/gnpcfigiidmljgiidkhmmcgbfkolnacg |
Opis | Chrome extension to filter files in GitHub code review using glob |
Rozmiar pliku | 71.67 KB |
Liczba instalacji | 43 |
Aktualna Wersja | 0.1.3 |
Ostatnia Aktualizacja | 2018-05-29 |
Data Publikacji | 2018-05-29 |
Deweloper | Unknown |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/andersonba/github-review-filter |
Adres URL Strony Pomocy | https://github.com/andersonba/github-review-filter/issues |
Obsługiwane Języki | 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'" } |