Pull Request Notifications

Pull Request Notifications

Display notifications for Bitbucket pull requests.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Pull Request Notifications",
  "version": "0.1.14",
  "description": "Display notifications for Bitbucket pull requests.",
  "icons": {
    "64": "icon64.png",
    "512": "icon512.png"
  },
  "browser_action": {
    "default_popup": "index.html"
  },
  "options_ui": {
    "page": "/index.html#options",
    "open_in_tab": true
  },
  "background": {
    "page": "/index.html#background",
    "persistent": false
  },
  "permissions": [
    "background",
    "alarms",
    "notifications"
  ],
  "optional_permissions": [
    "https://*/*"
  ],
  "content_security_policy": "style-src 'self' 'unsafe-inline'; img-src 'self' https:; connect-src https:; script-src-attr 'self' 'unsafe-inline'; default-src 'self';"
}