Video Seek Mousewheel

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

Co to jest Video Seek Mousewheel?

Video Seek Mousewheel to rozszerzenie Chrome opracowane przez Sarim Khan, a jego główną funkcją jest „Seek (forward/backward) videos by mouse wheel horizantal scroll in video sites. ex: youtube and twitch”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Video Seek Mousewheel

Pobierz pliki rozszerzeń Video Seek Mousewheel w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Video Seek Mousewheel Video Seek Mousewheel
ID ngefegfkceoglabhfknldhgcammklekf
Oficjalny URL https://chrome.google.com/webstore/detail/video-seek-mousewheel/ngefegfkceoglabhfknldhgcammklekf
Opis Seek (forward/backward) videos by mouse wheel horizantal scroll in video sites. ex: youtube and twitch
Rozmiar pliku 9.78 KB
Liczba instalacji 61
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2018-07-18
Data Publikacji 2018-07-18
Ocena 4.00/5 Łącznie 9 Oceny
Deweloper Sarim Khan
Typ Płatności free
Strona Rozszerzenia https://github.com/sarim/video-seek-mousewheel
Adres URL Strony Pomocy https://github.com/sarim/video-seek-mousewheel
Obsługiwane Języki 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
}