微信读书导出PDF

A web browser extension for weread.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "微信读书导出PDF",
  "description": "A web browser extension for weread.",
  "version": "0.0.1",
  "background": {
    "service_worker": "/background.js"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://weread.qq.com/*",
        "https://res.weread.qq.com/*",
        "https://cdn.weread.qq.com/*",
        "https://*.weread.qq.com/*"
      ],
      "js": [
        "/content.js"
      ]
    }
  ],
  "options_page": "options.html",
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "https://weread.qq.com/*",
        "https://res.weread.qq.com/*",
        "https://cdn.weread.qq.com/*",
        "https://*.weread.qq.com/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}