PaLLMs.ai

PaLLMs.ai

Your Multiple AI Chat Agent

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Your Multiple AI Chat Agent",
  "manifest_version": 3,
  "name": "PaLLMs.ai",
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "sidePanel"
  ],
  "version": "0.75",
  "side_panel": {
    "default_path": "sidepanel.html"
  },
  "icons": {
    "16": "icons/icon_small.png",
    "32": "icons/icon_small.png",
    "64": "icons/icon.png",
    "128": "icons/icon.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "audio/*"
      ],
      "matches": [
        "*://chat.openai.com/*",
        "*://claude.ai/*",
        "*://poe.com/*"
      ]
    }
  ],
  "background": {
    "service_worker": "javascript/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://chat.openai.com/*",
        "*://claude.ai/*",
        "*://poe.com/*"
      ],
      "js": [
        "javascript/constants.js",
        "javascript/config.js",
        "javascript/content.js"
      ]
    },
    {
      "matches": [
        "https://extensionpay.com/*"
      ],
      "js": [
        "javascript/ExtPay.js"
      ],
      "run_at": "document_start"
    }
  ]
}