Basaas Extension

Basaas Extension

Switch between all your apps quickly. Get a unified view on all your daily to dos and appointments.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Switch between all your apps quickly. Get a unified view on all your daily to dos and appointments.",
  "version": "1.3.2",
  "name": "Basaas Extension",
  "short_name": "Basaas",
  "homepage_url": "https://www.basaas.com",
  "options_page": "options.html",
  "background": {
    "page": "background.html"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": "icon-34.png"
  },
  "icons": {
    "16": "icon-128.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "alarms",
    "storage",
    "webNavigation",
    "tabs",
    "https://*/*",
    "http://*/*",
    "https://*.basaasdev.de/*",
    "https://*.basaas.com/*",
    "contextMenus",
    "notifications"
  ],
  "web_accessible_resources": [
    "task-iframe.html",
    "sidebar-iframe.html",
    "content.styles.css",
    "icon-128.png",
    "icon-34.png"
  ],
  "manifest_version": 2,
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://www.google-analytics.com; object-src 'self'"
}