Better Pull Requests

Better Pull Requests

Better Pull Requests is a simple Chrome extension that adds a few niceties to GitHub and Bitbucket diff views. The main idea is…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Better Pull Requests",
  "version": "1.0.0",
  "permissions": [
    "storage",
    "<all_urls>"
  ],
  "options_page": "options.html",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.js",
        "jquery.livequery.js",
        "helpers.js",
        "github.js",
        "gitlab.js",
        "bitbucket.js"
      ],
      "css": [
        "github.css",
        "gitlab.css",
        "bitbucket.css"
      ]
    }
  ]
}