Pretty Pull Requests (Github)

Pretty Pull Requests (Github)

This extension applies various tweaks to the github pull-request code review pages.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Pretty Pull Requests (Github)",
  "description": "This extension applies various tweaks to the github pull-request code review pages.",
  "version": "2.11.1",
  "icons": {
    "32": "ppr-logo/32x32.png",
    "64": "ppr-logo/64x64.png",
    "128": "ppr-logo/128x128.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "tabs",
    "storage",
    "activeTab"
  ],
  "optional_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*/pull/*/files",
        "https://github.com/*/commit*",
        "https://github.com/*/pulls*",
        "https://github.com/*/compare*",
        "https://github.com/*/*/pulls*",
        "https://github.com/*/*/pull/*",
        "https://github.com/*/*/pull/*/files",
        "https://github.com/*/*/commit*",
        "https://github.com/*/*/compare*"
      ],
      "js": [
        "jquery-1.9.1.min.js",
        "github.com.js"
      ],
      "css": [
        "pullrequest.css"
      ]
    }
  ],
  "page_action": {
    "default_icon": "ppr-logo/128x128.png",
    "default_title": "Pretty Pull Requests",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "jquery-1.9.1.min.js"
  ],
  "options_page": "options.html"
}