Mini Weibo
Weibo cleaner UI
Mini Weiboคืออะไร?
Mini Weibo เป็นส่วนขยายของ Chrome ที่พัฒนาโดย liqinshuo469 และคุณลักษณะหลักของมันคือ "Weibo cleaner UI"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Mini Weibo
ดาวน์โหลดไฟล์ส่วนขยาย 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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Mini Weibo |
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" } } } |