Autentik AI: Explain & Reply

Autentik AI: Explain & Reply

AI-based web-extension to help autistic individuals with social interactions: explains hidden meanings and proposes replies.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Autentik AI: Explain & Reply",
  "version": "1.0.7",
  "description": "AI-based web-extension to help autistic individuals with social interactions: explains hidden meanings and proposes replies.",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "activeTab",
    "scripting"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "icons": {
    "16": "logo-16.png",
    "48": "logo-48.png",
    "128": "logo-128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ]
}