Examine source code of GitHub Plus

Inspect and view changes in GitHub Plus source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "GitHub Plus",
  "version": "1.0.0",
  "description": "Chrome extension to make a little better use of GitHub",
  "icons": {
    "16": "image/icon16.png",
    "48": "image/icon48.png",
    "128": "image/icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "image/icon16.png",
      "24": "image/icon24.png",
      "32": "image/icon32.png"
    }
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://github.com/*",
        "https://gist.github.com/*"
      ],
      "js": [
        "js/jquery-2.2.4.min.js",
        "js/content.js",
        "js/ignore-whitespace.js",
        "js/remove-ellipsis.js",
        "js/expand-message.js",
        "js/show-hide-comment.js",
        "js/not-merge-wip.js",
        "js/no-relative-time.js",
        "js/open-diff-patch.js",
        "js/toolbar/insert-quote.js"
      ],
      "css": [
        "css/content.css",
        "css/liquid-design.css",
        "css/tab-size.css",
        "css/close-button-to-left.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/ignore-whitespace-bg.js"
    ]
  },
  "homepage_url": "https://github.com/rockwillj/GitHub-Plus",
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "*://github.com/*",
    "*://gist.github.com/*"
  ]
}