Github Add Bulk Reviewers

Github Add Bulk Reviewers

A basic extension to add multiple reviewers to 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 Add Bulk Reviewers",
  "version": "0.0.1",
  "description": "A basic extension to add multiple reviewers to a github pull request.",
  "permissions": [
    "storage",
    "scripting",
    "activeTab"
  ],
  "host_permissions": [
    "*://*.github.com/"
  ],
  "icons": {
    "48": "images/icon-48x48.png",
    "128": "images/icon-128x128.png"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "images/icon-48x48.png"
  },
  "manifest_version": 3
}