V2EX HELPER

the way to make v2ex better

V2EX HELPERคืออะไร?

V2EX HELPER เป็นส่วนขยายของ Chrome ที่พัฒนาโดย hanzichi และคุณลักษณะหลักของมันคือ "the way to make v2ex better"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย V2EX HELPER

ดาวน์โหลดไฟล์ส่วนขยาย V2EX HELPER ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        为 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": [
        ""
    ]
}