YouTube Playback Position with Side Buttons

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

O que é YouTube Playback Position with Side Buttons?

YouTube Playback Position with Side Buttons é uma extensão do Chrome desenvolvida por sanitysign, e sua principal característica é "When hovering the video or in fullscreen use mouse forward/backward side buttons to navigate the video".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão YouTube Playback Position with Side Buttons

Baixe arquivos de extensão YouTube Playback Position with Side Buttons no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome YouTube Playback Position with Side Buttons YouTube Playback Position with Side Buttons
ID gdgfjcfcfkhoiebkflodhommhllbjnjd
URL Oficial https://chromewebstore.google.com/detail/youtube-playback-position/gdgfjcfcfkhoiebkflodhommhllbjnjd
Descrição When hovering the video or in fullscreen use mouse forward/backward side buttons to navigate the video
Tamanho do Arquivo 21.13 KB
Contagem de Instalações 97
Versão Atual 1.0.1
Última Atualização 2022-11-04
Data de Publicação 2022-03-17
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor sanitysign
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://sanitysign.github.io/extensions-privacy-policies
Idiomas Suportados 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": []
    }
}