Hide whitespaces GitHub
Always hide whitespaces in GitHub
Cos'è Hide whitespaces GitHub?
Hide whitespaces GitHub è un'estensione di Chrome sviluppata da Arnaud Barré, e la sua funzione principale è "Always hide whitespaces in GitHub".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Hide whitespaces GitHub
Scarica i file di estensione Hide whitespaces GitHub in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
When navigating to the files tab on pull request reviews, append the url with ?w=1 to enable the "hide whitespace changes" option
Informazioni di Base sull'Estensione
Nome | Hide whitespaces GitHub |
ID | nafhbcekbgodfnjpnobmbiajjpgmibnc |
URL Ufficiale | https://chromewebstore.google.com/detail/hide-whitespaces-github/nafhbcekbgodfnjpnobmbiajjpgmibnc |
Descrizione | Always hide whitespaces in GitHub |
Dimensione del File | 10.26 KB |
Conteggio Installazioni | 57 |
Versione Corrente | 0.6.0 |
Ultimo Aggiornamento | 2022-08-09 |
Data di Pubblicazione | 2020-06-08 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | Arnaud Barré |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/ArnaudBarre/hide-whitespaces-github |
Lingue Supportate | 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" } } |