Cubicast

Cubicast

Capture, annotate and share web sessions as lightweight videos.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Cubicast",
  "version": "1.14.2",
  "description": "Capture, annotate and share web sessions as lightweight videos.",
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "icons": {
    "16": "icons/cubicast16.png",
    "32": "icons/cubicast32.png",
    "48": "icons/cubicast48.png",
    "100": "icons/cubicast100.png",
    "128": "icons/cubicast128.png"
  },
  "action": {
    "default_icon": {
      "16": "icons/cubicast16.png",
      "32": "icons/cubicast32.png",
      "48": "icons/cubicast48.png",
      "100": "icons/cubicast100.png",
      "128": "icons/cubicast128.png"
    },
    "default_title": "Cubicast",
    "default_popup": "ui/index.html",
    "browser_style": true
  },
  "background": {
    "service_worker": "background/index.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.cubicast.com/watch*"
      ],
      "js": [
        "content/export.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "helpers/**"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "extension_ids": []
    }
  ],
  "permissions": [
    "storage",
    "activeTab"
  ],
  "optional_permissions": [
    "tabCapture",
    "scripting",
    "webRequest"
  ],
  "host_permissions": [
    "https://*.cubicast.com/*"
  ],
  "optional_host_permissions": [
    "http://*/*",
    "https://*/*"
  ]
}