Douban Book Rating

Douban Book Rating

在微信读书、京东读书、得到读书、多看阅读、zlibrary图书详情页显示图书的豆瓣评分

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Douban Book Rating",
  "version": "1.0.0",
  "manifest_version": 3,
  "description": "在微信读书、京东读书、得到读书、多看阅读、zlibrary图书详情页显示图书的豆瓣评分",
  "action": {
    "default_icon": "static/icon/icon_16.png"
  },
  "background": {
    "service_worker": "service-worker.js"
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self';"
  },
  "permissions": [
    "tabs"
  ],
  "host_permissions": [
    "https://*.douban.com/*"
  ],
  "icons": {
    "16": "static/icon/icon_16.png",
    "64": "static/icon/icon_64.png"
  },
  "content_scripts": [
    {
      "css": [
        "./static/css/index.css"
      ],
      "js": [
        "./components/index.js"
      ],
      "matches": [
        "https://weread.qq.com/web/bookDetail/*",
        "https://www.duokan.com/pc/detail/*",
        "https://e-m.jd.com/detail/*",
        "https://www.dedao.cn/ebook/detail*",
        "https://zh.singlelogin.re/book/*"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "static/img/star.png",
        "static/img/allstars.png"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}