Basecamp Notifier

Basecamp Notifier

Display Basecamp activity with desktop notifications.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Basecamp Notifier",
  "version": "2.0.4",
  "description": "Display Basecamp activity with desktop notifications.",
  "icons": {
    "16": "img/icons/16.png",
    "48": "img/icons/48.png",
    "128": "img/icons/128.png"
  },
  "permissions": [
    "tabs",
    "storage",
    "notifications",
    "http://*/*",
    "https://*/*",
    "background"
  ],
  "web_accessible_resources": [
    "options.html"
  ],
  "options_page": "options.html",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_icon": "img/icons/popup-icon.png",
    "default_popup": "popup.html"
  },
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}