Zaia

Zaia

Zaia - Unlock the power of ChatGPT

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "2.5.0",
  "default_locale": "en",
  "icons": {
    "16": "icon_lexia.png",
    "48": "icon_lexia.png",
    "128": "icon_lexia.png"
  },
  "action": {
    "default_popup": "options.html",
    "default_title": "React Extension",
    "default_icon": "icon_lexia.png"
  },
  "options_page": "options.html",
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*",
        "https://bard.google.com/*",
        "https://claude.ai/chat/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "images": [
        "icon_lexia.png"
      ],
      "css": [
        "extra.css"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icon_lexia.png",
        "email-logo.png",
        "sales_icon.png",
        "linkedin-logo.png",
        "extra.css",
        "content/free_dialogs.json",
        "plifortigo.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}