知乎去除登陆弹窗

知乎去除登陆弹窗

关闭知乎的提示登陆弹出窗口

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "知乎去除登陆弹窗",
  "version": "1.1",
  "description": "关闭知乎的提示登陆弹出窗口",
  "author": "openHacking",
  "homepage_url": "https://lwebapp.com/",
  "icons": {
    "48": "icon.png",
    "128": "icon.png"
  },
  "action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.zhihu.com/*"
      ],
      "js": [
        "content-script.js"
      ],
      "css": [
        "custom.css"
      ],
      "run_at": "document_end"
    }
  ],
  "omnibox": {
    "keyword": "copy"
  },
  "background": {
    "service_worker": "background.js"
  }
}