Zhihu block
通过关键词屏蔽知乎动态
What is Zhihu block?
Zhihu block is a Chrome extension developed by YiyuanLiu, and its main feature is "通过关键词屏蔽知乎动态".
Download Zhihu block Extension CRX File
Download Zhihu block 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
Yiyuan Liu 开发的知乎屏蔽插件 支持关键词匹配和正则表达式匹配,用于屏蔽知乎首页、发现等板块中不想看到的内容。 Github: https://github.com/yiyuanliu/zhihu-block
Extension Basic Information
Name | |
ID | nodfdbeljjknhihmjbfjlpbahhadbmif |
Official URL | https://chrome.google.com/webstore/detail/zhihu-block/nodfdbeljjknhihmjbfjlpbahhadbmif |
Description | 通过关键词屏蔽知乎动态 |
File Size | 29.54 KB |
Installation Count | 34 |
Current Version | 1.0 |
Last Updated | 2016-11-08 |
Publish Date | 2016-11-08 |
Rating | 5.00/5 Total 3 Ratings |
Developer | YiyuanLiu |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/yiyuanliu/zhihu-block |
Supported Languages | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Zhihu block", "description": "\u901a\u8fc7\u5173\u952e\u8bcd\u5c4f\u853d\u77e5\u4e4e\u52a8\u6001", "version": "1.0", "permissions": [ "activeTab", "storage" ], "browser_action": { "default_title": "\u6dfb\u52a0\u5c4f\u853d\u5173\u952e\u8bcd", "default_popup": "popup.html", "default_icon": "icon.png" }, "icons": { "48": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.zhihu.com\/" ], "js": [ "block_main.js" ] }, { "matches": [ "https:\/\/www.zhihu.com\/topic" ], "js": [ "block_topic.js" ] }, { "matches": [ "https:\/\/www.zhihu.com\/explore" ], "js": [ "block_explore.js" ] } ], "options_page": "options.html", "manifest_version": 2, "content_security_policy": "script-src 'self' ; object-src 'self'" } |