Github Whitespace Hider

Github Whitespace Hider

Automatically hides whitespace changes in GitHub pull requests for a cleaner code review experience.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Github Whitespace Hider",
  "version": "1.0",
  "description": "Automatically hides whitespace changes in GitHub pull requests for a cleaner code review experience.",
  "host_permissions": [
    "https://github.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*"
      ],
      "js": [
        "whitespace_hider.js"
      ]
    }
  ]
}