知乎去除登陆弹窗
关闭知乎的提示登陆弹出窗口
What is 知乎去除登陆弹窗?
知乎去除登陆弹窗 is a Chrome extension developed by https://lwebapp.com, and its main feature is "关闭知乎的提示登陆弹出窗口".
Extension Screenshots
Download 知乎去除登陆弹窗 Extension CRX File
Download 知乎去除登陆弹窗 extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
介绍: 未登录知乎状态下,每次打开文章会提示你登陆,使用这个插件,可以去除打开页面时出现的登陆弹窗,并且右下角的登陆提示也去除了,也不会影响后续的登陆功能。 功能: 1. 去除登陆弹窗 2. 去除右下角登陆提示 3. 不会影响正常的主动登陆 推荐: 欢迎使用我的其他插件:一键复制 CSDN https://lwebapp.com/zh/post/copy-csdn 反馈: 有任何问题,欢迎大家反馈。 如果觉得对你有帮助,欢迎到这里支持作者:https://lwebapp.com/zh/support
Extension Basic Information
Name | 知乎去除登陆弹窗 |
ID | jgdgcoekikjfdlfebcjoalinacbdpfmb |
Official URL | https://chromewebstore.google.com/detail/%E7%9F%A5%E4%B9%8E%E5%8E%BB%E9%99%A4%E7%99%BB%E9%99%86%E5%BC%B9%E7%AA%97/jgdgcoekikjfdlfebcjoalinacbdpfmb |
Description | 关闭知乎的提示登陆弹出窗口 |
File Size | 9.44 KB |
Installation Count | 266 |
Current Version | 1.1 |
Last Updated | 2023-07-03 |
Publish Date | 2023-06-30 |
Developer | https://lwebapp.com |
[email protected] | |
Payment Type | free |
Extension Website | https://lwebapp.com |
Help Page URL | https://lwebapp.com |
Privacy Policy Page URL | https://sites.google.com/view/copy-csdn-privacy-policy/home |
Supported Languages | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "\u77e5\u4e4e\u53bb\u9664\u767b\u9646\u5f39\u7a97", "version": "1.1", "description": "\u5173\u95ed\u77e5\u4e4e\u7684\u63d0\u793a\u767b\u9646\u5f39\u51fa\u7a97\u53e3", "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" } } |