eCDN for Google Meet by StriveCast

eCDN for Google Meet by StriveCast

This extension adds eCDN capabilities to Google Meet developed by StriveCast.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "eCDN for Google Meet by StriveCast",
  "description": "This extension adds eCDN capabilities to Google Meet developed by StriveCast.",
  "version": "1.1.4",
  "manifest_version": 2,
  "homepage_url": "https://portal.strivecast.com",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png",
    "256": "icons/icon256.png"
  },
  "permissions": [
    "storage"
  ],
  "storage": {
    "managed_schema": "schema.json"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube-nocookie.com/embed/*",
        "https://stream.meet.google.com/stream/*"
      ],
      "js": [
        "src/inject.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ]
}