V2EX HELPER
the way to make v2ex better
V2EX HELPER란 무엇입니까?
V2EX HELPER은(는) hanzichi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "the way to make v2ex better"입니다.
확장 프로그램 스크린샷
V2EX HELPER 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
为 v2ex 扩展了多个功能,包括: 1. 回复查看增强 2. 主题帖中图片点击放大功能 3. 发主题帖添加图片功能(微博图床,需登录微博) 4. 主题帖回复中增加对话详情功能 5. 自动签到 6. 新消息提醒
확장 프로그램 기본 정보
이름 | |
ID | ceciedfhiofnohkddfiibjieahonddjm |
공식 URL | https://chrome.google.com/webstore/detail/v2ex-helper/ceciedfhiofnohkddfiibjieahonddjm |
설명 | the way to make v2ex better |
파일 크기 | 39.87 KB |
설치 횟수 | 36 |
현재 버전 | 2.0.0 |
최근 업데이트 | 2018-01-17 |
출시 날짜 | 2018-01-17 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | hanzichi |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/hanzichi/v2ex-helper |
지원되는 언어 | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "V2EX HELPER", "manifest_version": 2, "version": "2.0.0", "description": "the way to make v2ex better", "icons": { "16": "icons\/icon_16.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "browser_action": { "default_title": "", "default_icon": { "19": "icons\/icon_19.png", "38": "icons\/icon_38.png" } }, "background": { "scripts": [ "background-scripts\/background.js" ] }, "options_ui": { "page": "option\/option.html" }, "permissions": [ "tabs", "storage", "notifications", "*:\/\/*.weibo.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/www.v2ex.com\/notifications*" ], "js": [ "content-scripts\/checkReply\/insertCheckBtn.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/www.v2ex.com\/t\/*isJump=1*" ], "js": [ "content-scripts\/checkReply\/jump.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/www.v2ex.com\/t\/*" ], "js": [ "content-scripts\/zoom\/zoom.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/www.v2ex.com\/new" ], "js": [ "content-scripts\/uploadImg\/uploadImg.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/www.v2ex.com\/t\/*" ], "js": [ "content-scripts\/checkConversation\/checkConversation.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/www.v2ex.com\/*" ], "js": [ "content-scripts\/signin\/signin.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "" ] } |