bitbucket-companion

bitbucket-companion

a companion for bitbucket

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "minimum_chrome_version": "50",
  "default_locale": "en",
  "options_page": "options.html",
  "browser_action": {
    "default_icon": "img/icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "alarms",
    "tabs",
    "notifications",
    "https://*/",
    "http://*/"
  ],
  "background": {
    "scripts": [
      "js/events.js"
    ],
    "persistent": true
  },
  "content_scripts": [
    {
      "all_frames": false,
      "run_at": "document_end",
      "js": [
        "js/monitor.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "description": "a companion for bitbucket",
  "name": "bitbucket-companion",
  "version": "1.5.3"
}