哔哩哔哩·猜你喜欢

哔哩哔哩·猜你喜欢

为你的哔哩哔哩PC首页增加「猜你喜欢」模块 2022年1月,由于B站更换了新版首页,从chrome版迁移需要大改代码。 并且B站首页已经集成了原生的推荐功能。 加之本人精力有限,Firefox移植版不再更新,抱歉。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "哔哩哔哩·猜你喜欢",
  "description": "为你的哔哩哔哩PC首页增加「猜你喜欢」模块",
  "version": "1.12",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "哔哩哔哩猜你喜欢",
    "default_popup": "popup.html"
  },
  "permissions": [
    "http://www.bilibili.com/*",
    "https://www.bilibili.com/*",
    "https://api.bilibili.com/*",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://www.bilibili.com/*",
        "https://www.bilibili.com/*"
      ],
      "js": [
        "bili-functions.js",
        "main.js"
      ],
      "run_at": "document_idle"
    }
  ]
}