Talos-Genesis Bridge

Talos-Genesis Bridge

Browser extension to allow bridging of user events between Talos and Genesis.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Talos-Genesis Bridge",
  "version": "0.0.4",
  "description": "Browser extension to allow bridging of user events between Talos and Genesis.",
  "manifest_version": 3,
  "background": {
    "service_worker": "messageBroker.js"
  },
  "action": {
    "default_popup": "/popup.html",
    "default_icon": {
      "128": "/images/nxg128.png"
    }
  },
  "icons": {
    "128": "/images/nxg128.png"
  },
  "permissions": [],
  "host_permissions": [
    "http://localhost:4200/*",
    "http://localhost:1880/*",
    "https://talos-app.io/*",
    "https://talos-staging.io/*",
    "https://talos-staging.tech.sitasys.com/*",
    "https://*.nxgen.cloud/*",
    "https://nxgen.cloud/*",
    "https://talos.evalink.io/*",
    "https://talos-staging.evalink.io/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://localhost:4200/*",
        "http://localhost:1880/*",
        "https://talos-app.io/*",
        "https://talos-staging.io/*",
        "https://talos-staging.tech.sitasys.com/*",
        "https://*.nxgen.cloud/*",
        "https://nxgen.cloud/*",
        "https://talos.evalink.io/*",
        "https://talos-staging.evalink.io/*"
      ],
      "all_frames": true,
      "js": [
        "pageScript.js"
      ]
    }
  ]
}