V2EX HELPER
the way to make v2ex better
什么是V2EX HELPER?
V2EX HELPER是由hanzichi开发的Chrome扩展程序,该扩展的主要功能是“the way to make v2ex better”。
扩展截图
下载V2EX HELPER扩展crx文件
下载V2EX HELPER扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
为 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": [
""
]
} | |