Hide whitespaces GitHub
Always hide whitespaces in GitHub
Vad är Hide whitespaces GitHub?
Hide whitespaces GitHub är en Chrome-tillägg utvecklad av Arnaud Barré, och dess huvudfunktion är "Always hide whitespaces in GitHub".
Tilläggsskärmbilder
Ladda ner Hide whitespaces GitHub-förlängningens CRX-fil
Ladda ner Hide whitespaces GitHub-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
When navigating to the files tab on pull request reviews, append the url with ?w=1 to enable the "hide whitespace changes" option
Grundläggande Information om Tillägg
Namn | Hide whitespaces GitHub |
ID | nafhbcekbgodfnjpnobmbiajjpgmibnc |
Officiell webbadress | https://chromewebstore.google.com/detail/hide-whitespaces-github/nafhbcekbgodfnjpnobmbiajjpgmibnc |
Beskrivning | Always hide whitespaces in GitHub |
Filstorlek | 10.26 KB |
Antal Installationer | 57 |
Aktuell Version | 0.6.0 |
Senast Uppdaterad | 2022-08-09 |
Publiceringsdatum | 2020-06-08 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | Arnaud Barré |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/ArnaudBarre/hide-whitespaces-github |
Stödda Språk | 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" } } |