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開發的Chrome擴展程式,該擴展的主要功能是“When hovering the video or in fullscreen use mouse forward/backward side buttons to navigate the video”。

擴展截圖

screenshot
screenshot

下載YouTube Playback Position with Side Buttons擴展crx文件

下載YouTube Playback Position with Side Buttons擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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": []
    }
}