StreamAlive - Polls, Word Clouds & Spinner Wheels

StreamAlive - Polls, Word Clouds & Spinner Wheels

FREE: Chat-powered polls, word clouds, Q&As and more

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "StreamAlive - Polls, Word Clouds & Spinner Wheels",
  "version": "4.0.0",
  "description": "FREE: Chat-powered polls, word clouds, Q&As and more",
  "icons": {
    "16": "favicon.ico",
    "32": "favicon.ico",
    "48": "favicon.ico",
    "128": "favicon.ico"
  },
  "action": {
    "default_title": "Streamalive",
    "default_popup": "index.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/watch?v=*",
        "https://vimeo.com/event/*",
        "https://vimeo.com/webinars/events/*",
        "https://*.webex.com/*",
        "https://teams.microsoft.com/*",
        "https://teams.live.com/*",
        "https://meet.google.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "https://web.webex.com/*"
      ],
      "js": [
        "iframe.js"
      ],
      "all_frames": true,
      "run_at": "document_idle"
    }
  ],
  "host_permissions": [
    "https://*.streamalive.com/*",
    "https://www.youtube.com/watch?v=*",
    "https://vimeo.com/event/*",
    "https://vimeo.com/webinars/events/*",
    "https://*.webex.com/*",
    "https://web.webex.com/*",
    "https://teams.microsoft.com/*",
    "https://teams.live.com/*",
    "https://meet.google.com/*"
  ],
  "permissions": [
    "cookies",
    "tabs",
    "activeTab",
    "storage"
  ]
}