YuJa Engage for Poll Migration

YuJa Engage for Poll Migration

The Engage Browser Extension allows Creators to migrate their existing polls and quizzes from Top Hat to the Engage Platform.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "YuJa Engage for Poll Migration",
  "version": "1.0",
  "description": "The Engage Browser Extension allows Creators to migrate their existing polls and quizzes from Top Hat to the Engage Platform.",
  "action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "storage",
    "webNavigation",
    "scripting"
  ],
  "host_permissions": [
    "https://*/*"
  ],
  "externally_connectable": {
    "matches": [
      "http://*.localhost:3000/*",
      "*://*.engage.yuja.com/*"
    ]
  },
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "./yuja.png",
    "32": "./yuja.png",
    "48": "./yuja.png",
    "128": "./yuja.png"
  }
}