manifest.json 717 Bytes
{
  "manifest_version": 3,
  "name": "XHS Bridge",
  "version": "1.0.0",
  "description": "小红书自动化 Bridge - 连接本地 Python CLI",
  "permissions": [
    "tabs",
    "cookies",
    "scripting",
    "alarms",
    "debugger"
  ],
  "host_permissions": [
    "https://www.xiaohongshu.com/*",
    "https://xiaohongshu.com/*",
    "https://creator.xiaohongshu.com/*",
    "ws://localhost/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.xiaohongshu.com/*",
        "https://xiaohongshu.com/*",
        "https://creator.xiaohongshu.com/*"
      ],
      "js": ["content.js"],
      "run_at": "document_idle"
    }
  ]
}