Git Pull Request Templates

Git Pull Request Templates

Pre-populate pull requests with a template on Github and Bitbucket.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "0.5.0",
  "manifest_version": 3,
  "description": "__MSG_appDescription__",
  "default_locale": "en",
  "applications": {
    "gecko": {
      "id": "{210cf697-fb1e-445c-b0c5-06b8de83bd1d}",
      "strict_min_version": "50.0"
    }
  },
  "icons": {
    "16": "images/icon-16.png",
    "128": "images/icon-128.png"
  },
  "background": {
    "service_worker": "scripts/background.js"
  },
  "options_ui": {
    "page": "pages/options.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://github.com/*/compare/*",
        "*://bitbucket.org/*/pull-request/new*",
        "*://bitbucket.org/*/pull-requests/new*",
        "*://*/pull-request/*"
      ],
      "js": [
        "scripts/content.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "permissions": [
    "storage"
  ]
}