Orbee Platform Console

Orbee Platform Console

The Orbee Platform Console is a fresh way to view Orbee data in real-time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "2.0.18",
  "manifest_version": 3,
  "author": "Yuxin Kang",
  "name": "Orbee Platform Console",
  "description": "The Orbee Platform Console is a fresh way to view Orbee data in real-time.",
  "icons": {
    "16": "img/black-orbee-icon-rounded-16x16.png",
    "48": "img/black-orbee-icon-rounded-48x48.png",
    "128": "img/black-orbee-icon-rounded-128x128.png"
  },
  "action": {
    "default_icon": {
      "16": "img/black-orbee-icon-rounded-16x16.png",
      "48": "img/black-orbee-icon-rounded-48x48.png",
      "128": "img/black-orbee-icon-rounded-128x128.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage",
    "webRequest",
    "webNavigation",
    "tabs",
    "cookies",
    "sidePanel"
  ],
  "side_panel": {
    "default_path": "index.html"
  },
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/getMergeTagUrl.js",
        "js/injectScript.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    }
  ]
}