Mini Weibo
Weibo cleaner UI
Mini Weibo란 무엇입니까?
Mini Weibo은(는) liqinshuo469에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Weibo cleaner UI"입니다.
확장 프로그램 스크린샷
Mini Weibo 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
一个小插件让你的微博页面更干净。 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" } } } |