Hide whitespaces GitHub
Always hide whitespaces in GitHub
Co to jest Hide whitespaces GitHub?
Hide whitespaces GitHub to rozszerzenie Chrome opracowane przez Arnaud Barré, a jego główną funkcją jest „Always hide whitespaces in GitHub”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Hide whitespaces GitHub
Pobierz pliki rozszerzeń Hide whitespaces GitHub 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
When navigating to the files tab on pull request reviews, append the url with ?w=1 to enable the "hide whitespace changes" option
Podstawowe informacje o rozszerzeniu
Nazwa | Hide whitespaces GitHub |
ID | nafhbcekbgodfnjpnobmbiajjpgmibnc |
Oficjalny URL | https://chromewebstore.google.com/detail/hide-whitespaces-github/nafhbcekbgodfnjpnobmbiajjpgmibnc |
Opis | Always hide whitespaces in GitHub |
Rozmiar pliku | 10.26 KB |
Liczba instalacji | 57 |
Aktualna Wersja | 0.6.0 |
Ostatnia Aktualizacja | 2022-08-09 |
Data Publikacji | 2020-06-08 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | Arnaud Barré |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/ArnaudBarre/hide-whitespaces-github |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hide whitespaces GitHub", "version": "0.6.0", "description": "Always hide whitespaces in GitHub", "permissions": [ "https:\/\/github.com\/**" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/**" ], "run_at": "document_start", "js": [ "hide-whitespaces.js" ] } ], "icons": { "128": "icon.png" } } |