YouTube Playback Position with Side Buttons

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

What is YouTube Playback Position with Side Buttons?

YouTube Playback Position with Side Buttons is a Chrome extension developed by sanitysign, and its main feature is "When hovering the video or in fullscreen use mouse forward/backward side buttons to navigate the video".

Extension Screenshots

screenshot
screenshot

Download YouTube Playback Position with Side Buttons Extension CRX File

Download YouTube Playback Position with Side Buttons 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

                        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.                    

Extension Basic Information

Name YouTube Playback Position with Side Buttons YouTube Playback Position with Side Buttons
ID gdgfjcfcfkhoiebkflodhommhllbjnjd
Official URL https://chromewebstore.google.com/detail/youtube-playback-position/gdgfjcfcfkhoiebkflodhommhllbjnjd
Description When hovering the video or in fullscreen use mouse forward/backward side buttons to navigate the video
File Size 21.13 KB
Installation Count 97
Current Version 1.0.1
Last Updated 2022-11-04
Publish Date 2022-03-17
Rating 5.00/5 Total 3 Ratings
Developer sanitysign
Email [email protected]
Payment Type free
Privacy Policy Page URL https://sanitysign.github.io/extensions-privacy-policies
Supported Languages 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": []
    }
}