YouTube Playback Position with Side Buttons

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

YouTube Playback Position with Side Buttons क्या है?

YouTube Playback Position with Side Buttons sanitysign द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "When hovering the video or in fullscreen use mouse forward/backward side buttons to navigate the video"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में YouTube Playback Position with Side Buttons एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम YouTube Playback Position with Side Buttons YouTube Playback Position with Side Buttons
ID gdgfjcfcfkhoiebkflodhommhllbjnjd
आधिकारिक URL https://chromewebstore.google.com/detail/youtube-playback-position/gdgfjcfcfkhoiebkflodhommhllbjnjd
विवरण When hovering the video or in fullscreen use mouse forward/backward side buttons to navigate the video
फ़ाइल का आकार 21.13 KB
स्थापना संख्या 97
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2022-11-04
प्रकाशन तिथि 2022-03-17
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर sanitysign
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://sanitysign.github.io/extensions-privacy-policies
समर्थित भाषाएँ 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": []
    }
}