github.monkeypatch.pullrequests

github.monkeypatch.pullrequests

Keep track of pull requests you've viewed, approved, or rejected.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "github.monkeypatch.pullrequests",
  "description": "Keep track of pull requests you've viewed, approved, or rejected.",
  "version": "1.7.5",
  "icons": {
    "128": "codeducky_partial_logo_128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*",
        "https://www.platform.githubenhancements.com/*"
      ],
      "js": [
        "jquery-1.11.1.min.js",
        "jquery.visible.js",
        "lodash.js",
        "angular.js",
        "jquery.hotkeys.js",
        "jquery.scrollTo.js",
        "GitHubPullRequestStatus.js"
      ],
      "css": [
        "GitHubPullRequestStatus.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "jquery-1.11.1.min.js",
      "GitHubPullRequestStatusBackground.js"
    ],
    "persistent": false
  }
}