GitHub-Diff-Whitespace
Adds a button to GitHub diff views which toggles whitespace (a la `git diff --ignore-all-space`)
What is GitHub-Diff-Whitespace?
GitHub-Diff-Whitespace is a Chrome extension developed by jasonkarns, and its main feature is "Adds a button to GitHub diff views which toggles whitespace (a la `git diff --ignore-all-space`)".
Extension Screenshots
Download GitHub-Diff-Whitespace Extension CRX File
Download GitHub-Diff-Whitespace 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
Provide a UI button to toggle whitespace in GitHub diffs.
Extension Basic Information
Name | GitHub-Diff-Whitespace |
ID | lhbcdehjihmbiafeodkfnbndleijnnhp |
Official URL | https://chromewebstore.google.com/detail/github-diff-whitespace/lhbcdehjihmbiafeodkfnbndleijnnhp |
Description | Adds a button to GitHub diff views which toggles whitespace (a la `git diff --ignore-all-space`) |
File Size | 5.42 KB |
Installation Count | 135 |
Current Version | 1.3.2 |
Last Updated | 2015-09-14 |
Publish Date | 2015-09-14 |
Rating | 3.57/5 Total 7 Ratings |
Developer | jasonkarns |
Payment Type | free |
Extension Website | https://github.com/jasonkarns/userscripts/tree/master/github-diff-whitespace |
Help Page URL | https://github.com/jasonkarns/userscripts/tree/master/github-diff-whitespace |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub-Diff-Whitespace", "version": "1.3.2", "manifest_version": 2, "description": "Adds a button to GitHub diff views which toggles whitespace (a la `git diff --ignore-all-space`)", "icons": { "128": "icon.png" }, "content_scripts": [ { "js": [ "github-diff-whitespace.js" ], "matches": [ "https:\/\/github.com\/*\/commit\/*", "https:\/\/github.com\/*\/compare\/*", "https:\/\/github.com\/*\/pull\/*" ] } ] } |