Load More Pull Request

Load More Pull Request

Extension to help with those very long Github Pull Requests

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Load More Pull Request",
  "version": "1.0.2",
  "manifest_version": 3,
  "author": "Chris Bibby",
  "homepage_url": "https://github.com/ChrisBibby/load-more-pr",
  "description": "Extension to help with those very long Github Pull Requests",
  "icons": {
    "16": "./icons/load-more-pr_16.png",
    "32": "./icons/load-more-pr_32.png",
    "48": "./icons/load-more-pr_48.png",
    "128": "./icons/load-more-pr_128.png"
  },
  "background": {
    "service_worker": "background.js",
    "matches": [
      "https://github.com/*/*/pull/*"
    ]
  },
  "permissions": [
    "scripting"
  ],
  "host_permissions": [
    "https://github.com/*/*/pull/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://github.com/*/*/pull/*"
      ],
      "run_at": "document_end",
      "js": [
        "inject.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}