Hey. Chat everywhere

Hey. Chat everywhere

Chat on every website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "author": "Hey Group",
  "manifest_version": 2,
  "default_locale": "en",
  "version": "1.0.30",
  "icons": {
    "16": "img/hey.png",
    "48": "img/hey.png",
    "128": "img/hey.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
  "externally_connectable": {
    "matches": [
      "*://hey.network/*",
      "*://www.hey.network/*"
    ],
    "accepts_tls_channel_id": false
  },
  "web_accessible_resources": [
    "index.html",
    "pixel.png"
  ],
  "permissions": [
    "storage",
    "contextMenus",
    "notifications",
    "tabs",
    "file:///*",
    "http://*/*",
    "https://*/*"
  ],
  "browser_action": {
    "default_title": "Hey extension",
    "default_icon": "img/hey.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/bundle.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "commands": {
    "toggle-hey": {
      "suggested_key": {
        "default": "Ctrl+Shift+Y",
        "mac": "Command+Shift+Y"
      },
      "description": "Toggle Hey"
    }
  }
}