Video Seek Mousewheel

Seek (forward/backward) videos by mouse wheel horizantal scroll in video sites. ex: youtube and twitch

Video Seek Mousewheelคืออะไร?

Video Seek Mousewheel เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sarim Khan และคุณลักษณะหลักของมันคือ "Seek (forward/backward) videos by mouse wheel horizantal scroll in video sites. ex: youtube and twitch"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Video Seek Mousewheel

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

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

                        If your mousewheel has horizontal scroll buttons, pressing it left/right will seek the video backward/forward in supported sites. Currently youtube and twitch is supported.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Video Seek Mousewheel Video Seek Mousewheel
ID ngefegfkceoglabhfknldhgcammklekf
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/video-seek-mousewheel/ngefegfkceoglabhfknldhgcammklekf
คำอธิบาย Seek (forward/backward) videos by mouse wheel horizantal scroll in video sites. ex: youtube and twitch
ขนาดไฟล์ 9.78 KB
จำนวนการติดตั้ง 61
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2018-07-18
วันที่เผยแพร่ 2018-07-18
คะแนน 4.00/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา Sarim Khan
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/sarim/video-seek-mousewheel
URL หน้าช่วยเหลือ https://github.com/sarim/video-seek-mousewheel
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Seek Mousewheel",
    "description": "Seek (forward\/backward) videos by mouse wheel horizantal scroll in video sites. ex: youtube and twitch",
    "version": "1.0",
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*",
                "*:\/\/www.twitch.tv\/*",
                "*:\/\/player.twitch.tv\/*"
            ],
            "js": [
                "inject.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "video-seek-mousewheel.js"
    ],
    "icons": {
        "128": "mouse.png"
    },
    "manifest_version": 2
}