Inspect and view changes in ChatDev IDE: Building your AI Agent source codes across current and past versions
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",
"manifest_version": 3,
"name": "__MSG_appName__",
"description": "__MSG_appDesc__",
"default_locale": "en",
"version": "1.5.5",
"icons": {
"16": "src/assets/icon.png",
"32": "src/assets/icon.png",
"48": "src/assets/icon.png",
"128": "src/assets/icon.png"
},
"background": {
"service_worker": "service-worker-loader.js",
"type": "module"
},
"action": {},
"host_permissions": [
"https://*.bing.com/",
"https://*.openai.com/",
"https://*.chatgpt.com/",
"https://*.xfyun.cn/",
"https://*.llama2.ai/",
"https://*.plausible.io/",
"https://gemini.google.com/",
"https://*.toscl.com/",
"https://*.rsshub.app/",
"https://*.aliyun.com/",
"https://*.pi.ai/",
"https://*.anthropic.com/",
"https://*.claude.ai/",
"https://*.lmsys.org/",
"https://*.jina.ai/"
],
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
},
"optional_host_permissions": [
"http://*/*",
"https://*/*",
"wss://*/*"
],
"permissions": [
"storage",
"unlimitedStorage",
"sidePanel",
"declarativeNetRequestWithHostAccess"
],
"content_scripts": [
{
"js": [
"assets/chatgpt-inpage-proxy.ts-loader-d440b167.js"
],
"matches": [
"https://chat.openai.com/*",
"https://chatgpt.com/*"
]
},
{
"js": [
"assets/chatdev-inpage.tsx-loader-9b6bc028.js"
],
"matches": [
"https://*.toscl.com/*"
]
}
],
"commands": {
"open-app": {
"suggested_key": {
"default": "Alt+L",
"windows": "Alt+L",
"linux": "Alt+L",
"mac": "Command+L"
},
"description": "Open ChatDev app"
}
},
"side_panel": {
"default_path": "sidepanel.html"
},
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset_rsshub",
"enabled": true,
"path": "src/rules/rsshub.json"
},
{
"id": "ruleset_chatgpt",
"enabled": true,
"path": "src/rules/chatgpt.json"
},
{
"id": "ruleset_lmsys",
"enabled": true,
"path": "src/rules/lmsys.json"
},
{
"id": "ruleset_bing",
"enabled": true,
"path": "src/rules/bing.json"
},
{
"id": "ruleset_ddg",
"enabled": true,
"path": "src/rules/ddg.json"
},
{
"id": "ruleset_qianwen",
"enabled": true,
"path": "src/rules/qianwen.json"
},
{
"id": "ruleset_baichuan",
"enabled": true,
"path": "src/rules/baichuan.json"
}
]
},
"web_accessible_resources": [
{
"matches": [
"https://chat.openai.com/*",
"https://chatgpt.com/*"
],
"resources": [
"assets/browser-polyfill-a1087b52.js",
"assets/encoding-1e91229a.js",
"assets/chatgpt-inpage-proxy.ts-56edecce.js"
],
"use_dynamic_url": true
},
{
"matches": [
"https://*.toscl.com/*"
],
"resources": [
"assets/browser-polyfill-a1087b52.js",
"assets/window-store-289f32bb.js",
"assets/prompt-d70ac04a.js",
"assets/index-420a1fa7.js",
"assets/chatdev-inpage.tsx-fe8dafd1.js"
],
"use_dynamic_url": true
}
]
}