V2EX HELPER

the way to make v2ex better

什麼是V2EX HELPER?

V2EX HELPER是由hanzichi開發的Chrome擴展程式,該擴展的主要功能是“the way to make v2ex better”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載V2EX HELPER擴展crx文件

下載V2EX HELPER擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        为 v2ex 扩展了多个功能,包括:

1. 回复查看增强
2. 主题帖中图片点击放大功能
3. 发主题帖添加图片功能(微博图床,需登录微博)
4. 主题帖回复中增加对话详情功能
5. 自动签到
6. 新消息提醒                    

擴展基本資訊

名稱 V2EX HELPER V2EX HELPER
ID ceciedfhiofnohkddfiibjieahonddjm
官方網址 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": [
        ""
    ]
}