Orbee Platform Helper

Orbee Platform Helper

The Orbee Platform Helper is a tool to augment your site with Orbee platform functionality.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.29.0",
  "manifest_version": 3,
  "author": "Gen Fillipow",
  "name": "Orbee Platform Helper",
  "description": "The Orbee Platform Helper is a tool to augment your site with Orbee platform functionality.",
  "action": {
    "default_popup": "index.html",
    "default_title": "Open the popup"
  },
  "icons": {
    "16": "img/orbee-icon-16x16.png",
    "48": "img/orbee-icon-48x48.png",
    "128": "img/orbee-icon-128x128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "webRequest",
    "webNavigation",
    "tabs",
    "cookies"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/clickHeatmap.js",
        "js/lib/clickHeatmap.js",
        "js/scrollHeatmap.js",
        "js/lib/scrollHeatmap.js",
        "js/getMergeTagUrl.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    }
  ]
}