知乎去除登录提示

知乎去除登录提示

去掉烦人的知乎登录弹窗,适配所有zhihu.com子域名

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "heizhu",
  "manifest_version": 3,
  "name": "知乎去除登录提示",
  "version": "1.0.0",
  "description": "去掉烦人的知乎登录弹窗,适配所有zhihu.com子域名",
  "icons": {
    "16": "images/16.png",
    "32": "images/32.png",
    "48": "images/48.png",
    "128": "images/128.png"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/content.js"
      ],
      "matches": [
        "https://*.zhihu.com/*",
        "http://*.zhihu.com/*"
      ],
      "run_at": "document_end"
    }
  ]
}