Dialexity

Dialexity

AI powered by dialectics

Merlin
Additional files are visible only to premium users

manifest.json


{
  "short_name": "Dialexity",
  "name": "Dialexity",
  "manifest_version": 3,
  "version": "1.3.7",
  "action": {
    "default_icon": {
      "16": "favicons/16.png",
      "24": "favicons/24.png",
      "32": "favicons/32.png"
    },
    "default_title": "Dialexity",
    "default_popup": "pages/popup.html"
  },
  "default_locale": "en",
  "description": "AI powered by dialectics",
  "icons": {
    "16": "favicons/16.png",
    "24": "favicons/24.png",
    "48": "favicons/48.png",
    "64": "favicons/64.png",
    "128": "favicons/128.png"
  },
  "author": "Deidis GmbH",
  "web_accessible_resources": [
    {
      "resources": [
        "assets/AuthStore.js",
        "assets/mobx.esm.js",
        "assets/DialexityApi.js",
        "entry/dialexity_content_script.js",
        "favicons/*"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ]
    }
  ],
  "permissions": [
    "storage",
    "sidePanel",
    "contextMenus",
    "tabs"
  ],
  "host_permissions": [
    "https://dialexity.com/*"
  ],
  "side_panel": {
    "default_path": "pages/sidepanel.html"
  },
  "background": {
    "service_worker": "./entry/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://dialexity.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "entry/dialexity_content_script.js"
      ],
      "type": "module"
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}