Context Overlay

Context Overlay

Context Overlay is a tool that enables users to easily learn how to navigate software by giving users the ability to select tasks…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Context Overlay",
  "version": "1.2.3",
  "description": "",
  "manifest_version": 3,
  "web_accessible_resources": [
    {
      "resources": [
        "templates/*",
        "content-assets/*",
        "content-assets/logo.svg"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "template.js",
        "message.js",
        "navbar.js",
        "content.js",
        "interfaces/viewport.js",
        "draggable.js",
        "createmessage.js",
        "sidebar.js"
      ],
      "css": [
        "overlay.css"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "sidePanel"
  ],
  "icons": {
    "16": "/content-assets/icons/icon16.png",
    "32": "/content-assets/icons/icon32.png",
    "48": "/content-assets/icons/icon48.png",
    "128": "/content-assets/icons/icon128.png"
  },
  "host_permissions": [
    "*://*/*"
  ],
  "action": {
    "default_title": "Context Overlay"
  },
  "background": {
    "service_worker": "worker/worker.js",
    "type": "module"
  },
  "side_panel": {
    "default_path": "popup.html"
  }
}