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是由Sarim Khan开发的Chrome扩展程序,该扩展的主要功能是“Seek (forward/backward) videos by mouse wheel horizantal scroll in video sites. ex: youtube and twitch”。

扩展截图

screenshot

下载Video Seek Mousewheel扩展crx文件

下载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
}