Mini Weibo
Weibo cleaner UI
Wat is Mini Weibo?
Mini Weibo is een Chrome-extensie ontwikkeld door liqinshuo469, en de belangrijkste functie is "Weibo cleaner UI".
Extensie Screenshots
Download het CRX-bestand van de extensie Mini Weibo
Download Mini Weibo-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
一个小插件让你的微博页面更干净。
A tool to make the Weibo.com UI cleaner.
- 去除页面上冗余干扰的按钮。Remove redundant buttons
- 重新布局页面。Re-layout the page
- 去掉一些图标,比如VIP,微博认证等。Remove some icons like VIP icon Basisinformatie over de Extensie
| Naam | |
| ID | pnidnmdglfjhgfjnbchpbkjmmcghfcce |
| Officiële URL | https://chromewebstore.google.com/detail/mini-weibo/pnidnmdglfjhgfjnbchpbkjmmcghfcce |
| Beschrijving | Weibo cleaner UI |
| Bestandsgrootte | 42.95 KB |
| Aantal Installaties | 25 |
| Huidige Versie | 0.2.0 |
| Laatst Bijgewerkt | 2021-02-05 |
| Publicatiedatum | 2021-02-05 |
| Beoordeling | 4.50/5 Totaal 2 Beoordelingen |
| Ontwikkelaar | liqinshuo469 |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/lqs469/mini-weibo |
| Help Pagina-URL | https://github.com/lqs469/mini-weibo |
| Ondersteunde Talen | 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"
}
}
} | |