GitHub-Diff-Whitespace

GitHub-Diff-Whitespace

Adds a button to GitHub diff views which toggles whitespace (a la `git diff --ignore-all-space`)

Merlin
Additional files are visible only to premium users

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/*"
      ]
    }
  ]
}