百度AI伙伴

百度AI伙伴

百度AI伙伴是您在任何页面上的个人AI助手,可以帮助你快速阅读,为你提供创意灵感,在聊天对话中为你答疑解惑。

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "百度AI伙伴",
  "description": "百度AI伙伴是您在任何页面上的个人AI助手,可以帮助你快速阅读,为你提供创意灵感,在聊天对话中为你答疑解惑。",
  "version": "1.0.12",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "activeTab",
    "tabs"
  ],
  "action": {
    "default_title": "你的专属百度AI伙伴",
    "default_icon": {
      "16": "/assets/browser-action-icon.png",
      "32": "/assets/browser-action-icon.png",
      "48": "/assets/browser-action-icon.png",
      "128": "/assets/browser-action-icon.png"
    }
  },
  "icons": {
    "16": "/assets/browser-action-icon.png",
    "32": "/assets/browser-action-icon.png",
    "48": "/assets/browser-action-icon.png",
    "128": "/assets/browser-action-icon.png"
  },
  "commands": {
    "open_bot": {
      "suggested_key": {
        "windows": "Ctrl+Shift+K",
        "mac": "Command+K",
        "chromeos": "Ctrl+K",
        "linux": "Ctrl+K"
      },
      "description": "打开侧边栏"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "assets/[email protected]",
        "content-script.js"
      ],
      "run_at": "document_end"
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://*.baidu.com/*"
    ]
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "css/*",
        "assets/*",
        "sandbox/*"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "background": {
    "service_worker": "./background.js"
  },
  "options_page": "options/index.html"
}