Pull Request Review Helper

Pull Request Review Helper

Optimize Pull Request Reviews and Focus on the Code that Matters Most

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Pull Request Review Helper",
  "description": "Optimize Pull Request Reviews and Focus on the Code that Matters Most",
  "version": "9.0",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.bundle.js",
    "type": "module"
  },
  "action": {
    "default_title": "Review Helper",
    "default_popup": "./popup.html"
  },
  "permissions": [
    "tabs",
    "scripting",
    "storage"
  ],
  "icons": {
    "32": "icon32.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "host_permissions": [
    "https://bitbucket.org/*",
    "https://github.com/*"
  ]
}