YouTube Playback Position with Side Buttons

When hovering the video or in fullscreen use mouse forward/backward side buttons to navigate the video

Co je YouTube Playback Position with Side Buttons?

YouTube Playback Position with Side Buttons je rozšíření Chrome vyvinuté sanitysign, a jeho hlavní funkcí je „When hovering the video or in fullscreen use mouse forward/backward side buttons to navigate the video“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření YouTube Playback Position with Side Buttons

Stáhněte si soubory rozšíření YouTube Playback Position with Side Buttons ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Allows to navigate YouTube videos using mouse side-buttons similar to many video players. Navigation will work if the video is in full screen mode or cursor hovers the video.
Extension’s popup allows to change skip time.                    

Základní Informace o Rozšíření

Název YouTube Playback Position with Side Buttons YouTube Playback Position with Side Buttons
ID gdgfjcfcfkhoiebkflodhommhllbjnjd
Oficiální URL https://chromewebstore.google.com/detail/youtube-playback-position/gdgfjcfcfkhoiebkflodhommhllbjnjd
Popis When hovering the video or in fullscreen use mouse forward/backward side buttons to navigate the video
Velikost souboru 21.13 KB
Počet instalací 97
Aktuální Verze 1.0.1
Poslední Aktualizace 2022-11-04
Datum Vydání 2022-03-17
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář sanitysign
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://sanitysign.github.io/extensions-privacy-policies
Podporované Jazyky en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "version": "1.0.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "event_rules": [
        {
            "event": "declarativeContent.onPageChanged",
            "actions": [
                {
                    "type": "declarativeContent.ShowPageAction"
                }
            ],
            "conditions": [
                {
                    "type": "declarativeContent.PageStateMatcher",
                    "pageUrl": {
                        "hostEquals": "www.youtube.com"
                    }
                }
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "img\/mousetube-16.png",
            "32": "img\/mousetube-32.png",
            "48": "img\/mousetube-48.png",
            "128": "img\/mousetube-128.png"
        }
    },
    "icons": {
        "16": "img\/mousetube-16.png",
        "32": "img\/mousetube-32.png",
        "48": "img\/mousetube-48.png",
        "128": "img\/mousetube-128.png"
    },
    "default_locale": "en",
    "externally_connectable": {
        "ids": []
    }
}