Halist AI

Halist AI

Halist is a ChatGPT AI that augments your browsing. Get the AI to give you answers, respond to emails, create summaries and more.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Halist AI",
  "version": "2.7",
  "manifest_version": 3,
  "icons": {
    "128": "icon.png",
    "256": "[email protected]",
    "512": "[email protected]"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "index.html?action=chat",
    "default_icon": "[email protected]"
  },
  "description": "Halist is a ChatGPT AI that augments your browsing. Get the AI to give you answers, respond to emails, create summaries and more.",
  "permissions": [
    "activeTab",
    "contextMenus",
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "https://mail.google.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "gmail_plugin/content.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://halist.ai/logged_in*",
        "https://amix3k.loca.lt/logged_in*"
      ],
      "js": [
        "logged_in.js"
      ],
      "run_at": "document_end"
    }
  ]
}