Pull Request Template Generator

Pull Request Template Generator

By utilizing a standard Pull Request (PR) Template developers can have a checklist for their coding standards.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Pull Request Template Generator",
  "description": "By utilizing a standard Pull Request (PR) Template developers can have a checklist for their coding standards.",
  "version": "0.5.3",
  "manifest_version": 2,
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_title": "Template Generator",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "permissions": [
    "storage",
    "clipboardWrite",
    "tabs",
    "activeTab"
  ],
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://tools.lowes.com/stash/projects/MOB/repos/*/pull-requests?create*"
      ]
    }
  ]
}