Psychological AI

Psychological AI

The Chrome Extension from Psychological AI for successful communication.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_extName__",
  "version": "1.0.68",
  "description": "__MSG_extDescription__",
  "author": "Psychological AI Team",
  "default_locale": "de",
  "icons": {
    "16": "/images/16x16.png",
    "32": "/images/32x32.png",
    "48": "/images/48x48.png",
    "64": "/images/64x64.png",
    "128": "/images/128x128.png"
  },
  "action": {
    "default_title": "Psychological AI"
  },
  "background": {
    "service_worker": "scripts/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.linkedin.com/*"
      ],
      "js": [
        "main.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.psychological.ai/dashboard/*",
      "https://*.100worte.de/dashboard/*",
      "http://localhost:3000/dashboard/*"
    ]
  },
  "permissions": [
    "storage",
    "activeTab",
    "cookies",
    "webRequest"
  ],
  "host_permissions": [
    "https://*.linkedin.com/*",
    "https://*.psychological.ai/*",
    "https://*.100worte.de/dashboard/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "static/*",
        "images/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}