Atlassian Pull Request Notifier

Atlassian Pull Request Notifier

Display pull request notifications from Stash and Bitbucket

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Atlassian Pull Request Notifier",
  "short_name": "PR queue",
  "version": "2.2.3",
  "manifest_version": 2,
  "description": "Display pull request notifications from Stash and Bitbucket",
  "homepage_url": "https://github.com/clanceyp/stash-pull-request-notifier",
  "icons": {
    "32": "lib/i/octicons-git-request.32.png",
    "48": "lib/i/octicons-git-request.o.48.png",
    "128": "lib/i/octicons-git-request.o.128.png"
  },
  "browser_action": {
    "default_icon": "lib/i/octicons-git-request.32.png",
    "default_title": "Atlassian review notifier",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "lib/js/vendor/underscore.js",
      "lib/js/vendor/zepto.js",
      "lib/js/vendor/can.js",
      "lib/js/manifest.js",
      "lib/options/js/background.js",
      "lib/js/background.js"
    ]
  },
  "web_accessible_resources": [
    "lib/i/octicons-git-merge.48.png",
    "lib/js/content_script_2.js"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "options_page": "/lib/options/index.html",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "background",
    "notifications",
    "activeTab"
  ]
}