Speechless 微博备份

Speechless 微博备份

把新浪微博的内容,导出成 PDF 文件进行备份

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Speechless 微博备份",
  "version": "2.2",
  "description": "把新浪微博的内容,导出成 PDF 文件进行备份",
  "icons": {
    "16": "icons/Speechless16.png",
    "32": "icons/Speechless32.png",
    "48": "icons/Speechless48.png",
    "128": "icons/Speechless128.png"
  },
  "content_scripts": [
    {
      "js": [
        "index.js"
      ],
      "css": [
        "style/speechless.css"
      ],
      "matches": [
        "https://weibo.com/u/*",
        "https://weibo.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self'"
  }
}