Hexcord

Hexcord

Record your screen with an embedded camera feed and share publicly or have live stream sessions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Hexcord",
  "version": "1.0.19",
  "description": "Record your screen with an embedded camera feed and share publicly or have live stream sessions.",
  "permissions": [
    "*://*/*",
    "tabs",
    "activeTab",
    "declarativeContent",
    "storage"
  ],
  "background": {
    "scripts": [
      "scripts/background.js"
    ],
    "persistent": false
  },
  "externally_connectable": {
    "matches": [
      "*://*.hexcord.com/*"
    ]
  },
  "browser_action": {
    "default_popup": "index.html",
    "default_icon": {
      "16": "images/horus_logo.png",
      "32": "images/horus_logo.png",
      "48": "images/horus_logo.png",
      "128": "images/horus_logo.png"
    }
  },
  "commands": {
    "_execute_browser_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y"
      }
    },
    "_execute_page_action": {
      "suggested_key": {
        "default": "Ctrl+Shift+E"
      }
    }
  },
  "icons": {
    "16": "images/horus_logo.png",
    "32": "images/horus_logo.png",
    "48": "images/horus_logo.png",
    "128": "images/horus_logo.png"
  },
  "options_page": "options.html",
  "manifest_version": 2,
  "web_accessible_resources": [
    "assets/*"
  ]
}