Hide whitespaces GitHub
Always hide whitespaces in GitHub
Co je Hide whitespaces GitHub?
Hide whitespaces GitHub je rozšíření Chrome vyvinuté Arnaud Barré, a jeho hlavní funkcí je „Always hide whitespaces in GitHub“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Hide whitespaces GitHub
Stáhněte si soubory rozšíření Hide whitespaces GitHub ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
When navigating to the files tab on pull request reviews, append the url with ?w=1 to enable the "hide whitespace changes" option
Základní Informace o Rozšíření
Název | Hide whitespaces GitHub |
ID | nafhbcekbgodfnjpnobmbiajjpgmibnc |
Oficiální URL | https://chromewebstore.google.com/detail/hide-whitespaces-github/nafhbcekbgodfnjpnobmbiajjpgmibnc |
Popis | Always hide whitespaces in GitHub |
Velikost souboru | 10.26 KB |
Počet instalací | 57 |
Aktuální Verze | 0.6.0 |
Poslední Aktualizace | 2022-08-09 |
Datum Vydání | 2020-06-08 |
Hodnocení | 5.00/5 Celkem 2 Hodnocení |
Vývojář | Arnaud Barré |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/ArnaudBarre/hide-whitespaces-github |
Podporované Jazyky | 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" } } |