Mini Weibo
Weibo cleaner UI
什么是Mini Weibo?
Mini Weibo是由liqinshuo469开发的Chrome扩展程序,该扩展的主要功能是“Weibo cleaner UI”。
扩展截图
下载Mini Weibo扩展crx文件
下载Mini Weibo扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
一个小插件让你的微博页面更干净。
A tool to make the Weibo.com UI cleaner.
- 去除页面上冗余干扰的按钮。Remove redundant buttons
- 重新布局页面。Re-layout the page
- 去掉一些图标,比如VIP,微博认证等。Remove some icons like VIP icon 扩展基本信息
| 名称 | |
| ID | pnidnmdglfjhgfjnbchpbkjmmcghfcce |
| 官方URL | https://chromewebstore.google.com/detail/mini-weibo/pnidnmdglfjhgfjnbchpbkjmmcghfcce |
| 简介 | Weibo cleaner UI |
| 文件大小 | 42.95 KB |
| 安装次数 | 25 |
| 当前版本 | 0.2.0 |
| 更新时间 | 2021-02-05 |
| 上架时间 | 2021-02-05 |
| 评分 | 4.50/5 共2次评分 |
| 开发者 | liqinshuo469 |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/lqs469/mini-weibo |
| 帮助页面URL | https://github.com/lqs469/mini-weibo |
| 支持的语言 | 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"
}
}
} | |