Video Seek Mousewheel

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

Video Seek Mousewheel là gì?

Video Seek Mousewheel là một tiện ích mở rộng Chrome được phát triển bởi Sarim Khan, và tính năng chính của nó là "Seek (forward/backward) videos by mouse wheel horizantal scroll in video sites. ex: youtube and twitch".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Video Seek Mousewheel

Tải xuống các tệp mở rộng Video Seek Mousewheel dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Video Seek Mousewheel Video Seek Mousewheel
ID ngefegfkceoglabhfknldhgcammklekf
URL Chính Thức https://chrome.google.com/webstore/detail/video-seek-mousewheel/ngefegfkceoglabhfknldhgcammklekf
Mô tả Seek (forward/backward) videos by mouse wheel horizantal scroll in video sites. ex: youtube and twitch
Kích Thước Tệp 9.78 KB
Số Lần Cài Đặt 61
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2018-07-18
Ngày Phát Hành 2018-07-18
Đánh Giá 4.00/5 Tổng số 9 Đánh Giá
Nhà Phát Triển Sarim Khan
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/sarim/video-seek-mousewheel
URL Trang Trợ Giúp https://github.com/sarim/video-seek-mousewheel
Ngôn Ngữ Được Hỗ Trợ 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
}