EdCast MyGuide Player

EdCast MyGuide Player

EdCast MyGuide Player

Merlin
Additional files are visible only to premium users

manifest.json


{
  "author": "EdCast",
  "manifest_version": 3,
  "name": "EdCast MyGuide Player",
  "description": "EdCast MyGuide Player",
  "version": "2024.2.1",
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "exclude_matches": [],
      "css": [
        "content_script/dom_selector/css/style.css"
      ],
      "js": [
        "gm_client_iframe.js"
      ],
      "all_frames": true,
      "match_about_blank": true
    },
    {
      "matches": [
        "*://*/*"
      ],
      "exclude_matches": [],
      "css": [
        "content_script/worker/css/style.css"
      ],
      "js": [
        "gm_client.js"
      ]
    }
  ],
  "background": {
    "service_worker": "player_back.js"
  },
  "icons": {
    "16": "common/img/gicon16.png",
    "48": "common/img/gicon48.png",
    "128": "common/img/gicon128.png"
  },
  "permissions": [
    "storage",
    "activeTab"
  ],
  "host_permissions": [
    "https://api-v3.guideme.io/",
    "https://sso.myguide.org/",
    "https://v3-analytics.guideme.io/",
    "https://*.edcast.com/"
  ],
  "action": {
    "default_icon": {
      "40": "common/img/qu_icon.png"
    },
    "default_popup": "browser_action/popup.html",
    "browser_style": true
  },
  "web_accessible_resources": [
    {
      "resources": [
        "content_script/**/*.html",
        "side_panel/**/*.html",
        "side_panel/**/*.js",
        "common/lib/fonts/*",
        "common/img/*",
        "common/icons/*",
        "common/audio/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "script-src": "self",
    "object-src": "self"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}