GitHub - Release Notes Compiler

GitHub - Release Notes Compiler

Help you to build release notes from a GitHub pull request

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "GitHub - Release Notes Compiler",
  "version": "0.0.2",
  "manifest_version": 3,
  "description": "Help you to build release notes from a GitHub pull request",
  "homepage_url": "https://ae.studio",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "default_locale": "en",
  "background": {
    "service_worker": "src/bg/background.js"
  },
  "action": {
    "default_icon": "icons/icon19.png",
    "default_title": "GitHub - Release Notes Compiler",
    "default_popup": "src/browser_action/browser_action.html"
  },
  "permissions": [
    "clipboardWrite"
  ],
  "host_permissions": [
    "*://github.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://github.com/*"
      ],
      "js": [
        "js/index.js"
      ],
      "run_at": "document_end"
    }
  ]
}