Your Multiple AI Chat Agent
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
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.81",
"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": [
"*://chatgpt.com/*",
"*://chat.openai.com/*",
"*://claude.ai/*",
"*://poe.com/*"
]
}
],
"background": {
"service_worker": "javascript/background.js"
},
"content_scripts": [
{
"matches": [
"*://chatgpt.com/*",
"*://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"
}
]
}