Mini Weibo
Weibo cleaner UI
What is Mini Weibo?
Mini Weibo is a Chrome extension developed by liqinshuo469, and its main feature is "Weibo cleaner UI".
Extension Screenshots
Download Mini Weibo Extension CRX File
Download Mini Weibo 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
一个小插件让你的微博页面更干净。 A tool to make the Weibo.com UI cleaner. - 去除页面上冗余干扰的按钮。Remove redundant buttons - 重新布局页面。Re-layout the page - 去掉一些图标,比如VIP,微博认证等。Remove some icons like VIP icon
Extension Basic Information
Name | Mini Weibo |
ID | pnidnmdglfjhgfjnbchpbkjmmcghfcce |
Official URL | https://chromewebstore.google.com/detail/mini-weibo/pnidnmdglfjhgfjnbchpbkjmmcghfcce |
Description | Weibo cleaner UI |
File Size | 42.95 KB |
Installation Count | 25 |
Current Version | 0.2.0 |
Last Updated | 2021-02-05 |
Publish Date | 2021-02-05 |
Rating | 4.50/5 Total 2 Ratings |
Developer | liqinshuo469 |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/lqs469/mini-weibo |
Help Page URL | https://github.com/lqs469/mini-weibo |
Supported Languages | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Mini Weibo", "version": "0.2.0", "description": "Weibo cleaner UI", "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" } }, "permissions": [], "content_scripts": [ { "matches": [ "https:\/\/weibo.com\/*", "https:\/\/www.weibo.com\/*" ], "css": [ "mini-weibo.css" ], "js": [ "mini-weibo.js" ], "run_at": "document_start" } ], "commands": { "_execute_browser_action": { "description": "Opens Mini Weibo" } } } |