V2EX HELPER

the way to make v2ex better

V2EX HELPER क्या है?

V2EX HELPER hanzichi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "the way to make v2ex better"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में V2EX HELPER एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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

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

एक्सटेंशन की मूल जानकारी

नाम V2EX HELPER V2EX HELPER
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": [
        ""
    ]
}