Github PR Sanity

Github PR Sanity

Improvements to Github's Pull Request list. See who's assigned, build statuses, files changed by type.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Github PR Sanity",
  "short_name": "PR Sanity",
  "version": "0.3.5",
  "description": "Improvements to Github's Pull Request list. See who's assigned, build statuses, files changed by type.",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "underscore.js",
      "jquery.js",
      "background.js"
    ],
    "persistent": true
  },
  "icons": {
    "19": "icon19.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "images/octocat"
    }
  },
  "web_accessible_resources": [
    "images/ajax-loader.gif",
    "dollar-sign.png",
    "cancel.png"
  ],
  "permissions": [
    "tabs",
    "webRequest",
    "http://github.com/*",
    "https://github.com/*"
  ],
  "content_security_policy": "script-src 'self' https://github.com 'unsafe-eval'; object-src 'self'"
}