小红书笔记采集助手|采集个人主页,导出csv

小红书笔记采集助手|采集个人主页,导出csv

采集个人主页笔记,导出csv,抓取笔记详情,下载笔记资源

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "current_locale": "zh_CN",
  "name": "小红书笔记采集助手|采集个人主页,导出csv",
  "version": "0.0.6",
  "description": "采集个人主页笔记,导出csv,抓取笔记详情,下载笔记资源",
  "permissions": [
    "activeTab",
    "tabs",
    "cookies"
  ],
  "host_permissions": [
    "*://*.xiaohongshu.com/user/profile/*"
  ],
  "background": {
    "service_worker": "src/pages/background/index.js",
    "type": "module"
  },
  "action": {
    "default_icon": "icon-34.png"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.xiaohongshu.com/user/profile/*"
      ],
      "js": [
        "src/pages/contentInjected/index.js"
      ],
      "css": [
        "assets/css/contentStyle1715953113795.chunk.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/js/*.js",
        "assets/css/*.css",
        "icon-128.png",
        "icon-34.png",
        "src/pages/content/iframe/index.html"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}