ChatDev IDE: Building your AI Agent

ChatDev IDE: Building your AI Agent

Personalize your AI Town and build your GPTs with PromptIDE.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "version": "1.5.2",
  "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://*.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-d8c37705.js"
      ],
      "matches": [
        "https://chat.openai.com/*",
        "https://chatgpt.com/*"
      ]
    },
    {
      "js": [
        "assets/chatdev-inpage.tsx-loader-fee0e52b.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_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-42af2387.js"
      ],
      "use_dynamic_url": true
    },
    {
      "matches": [
        "https://*.toscl.com/*"
      ],
      "resources": [
        "assets/browser-polyfill-a1087b52.js",
        "assets/window-store-4dcf00df.js",
        "assets/prompt-71e122fd.js",
        "assets/chatdev-inpage.tsx-75f82906.js"
      ],
      "use_dynamic_url": true
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}