Hide whitespaces GitHub
Always hide whitespaces in GitHub
What is Hide whitespaces GitHub?
Hide whitespaces GitHub is a Chrome extension developed by Arnaud Barré, and its main feature is "Always hide whitespaces in GitHub".
Extension Screenshots
Download Hide whitespaces GitHub Extension CRX File
Download Hide whitespaces GitHub extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
When navigating to the files tab on pull request reviews, append the url with ?w=1 to enable the "hide whitespace changes" option
Extension Basic Information
Name | Hide whitespaces GitHub |
ID | nafhbcekbgodfnjpnobmbiajjpgmibnc |
Official URL | https://chromewebstore.google.com/detail/hide-whitespaces-github/nafhbcekbgodfnjpnobmbiajjpgmibnc |
Description | Always hide whitespaces in GitHub |
File Size | 10.26 KB |
Installation Count | 57 |
Current Version | 0.6.0 |
Last Updated | 2022-08-09 |
Publish Date | 2020-06-08 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Arnaud Barré |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/ArnaudBarre/hide-whitespaces-github |
Supported Languages | 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" } } |