Github Expand Diff

Github Expand Diff

A user script for Chrome that allows you to expand the missing lines in a Github diff.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Github Expand Diff",
  "version": "0.0.1.6",
  "description": "A user script for Chrome that allows you to expand the missing lines in a Github diff.",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "https://*.com/*/*/pull/*",
        "https://*.com/*/*/commit/*",
        "https://*.com/*/*/compare/*"
      ],
      "include_globs": [
        "https://github.com/*",
        "https://github.*.com/*",
        "https://git.*.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "github-expand-diff.user.js"
      ]
    }
  ]
}