Video Seek Mousewheel

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

What is Video Seek Mousewheel?

Video Seek Mousewheel is a Chrome extension developed by Sarim Khan, and its main feature is "Seek (forward/backward) videos by mouse wheel horizantal scroll in video sites. ex: youtube and twitch".

Extension Screenshots

screenshot

Download Video Seek Mousewheel Extension CRX File

Download Video Seek Mousewheel extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Video Seek Mousewheel Video Seek Mousewheel
ID ngefegfkceoglabhfknldhgcammklekf
Official URL https://chrome.google.com/webstore/detail/video-seek-mousewheel/ngefegfkceoglabhfknldhgcammklekf
Description Seek (forward/backward) videos by mouse wheel horizantal scroll in video sites. ex: youtube and twitch
File Size 9.78 KB
Installation Count 61
Current Version 1.0
Last Updated 2018-07-18
Publish Date 2018-07-18
Rating 4.00/5 Total 9 Ratings
Developer Sarim Khan
Payment Type free
Extension Website https://github.com/sarim/video-seek-mousewheel
Help Page URL https://github.com/sarim/video-seek-mousewheel
Supported Languages 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
}