YouTube Scrubbing Rate Controller

An extension for controlling the scrubbing rate on YouTube. Hold the Ctrl key while pressing the right or left arrow keys

O que é YouTube Scrubbing Rate Controller?

YouTube Scrubbing Rate Controller é uma extensão do Chrome desenvolvida por Isaac Bartlett, e sua principal característica é "An extension for controlling the scrubbing rate on YouTube. Hold the Ctrl key while pressing the right or left arrow keys".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão YouTube Scrubbing Rate Controller

Baixe arquivos de extensão YouTube Scrubbing Rate Controller 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

                        Traditionally, when watching a YouTube video, the user can press either of the arrow keys to skip 5 seconds of the video in either direction. This Chrome extension can be used to control the scrubbing rate on YouTube when pressing the arrow keys. With this extension, the user is no longer limited to scrubbing through a video 5 seconds at a time but rather they can chose from a variety of speeds. To use this extension, hold the Ctrl key on your keyboard when pressing either of the arrow keys.                    

Informações Básicas da Extensão

Nome YouTube Scrubbing Rate Controller YouTube Scrubbing Rate Controller
ID mbigoenlkbemdkkjhdpmcbkejihhjbnh
URL Oficial https://chromewebstore.google.com/detail/youtube-scrubbing-rate-co/mbigoenlkbemdkkjhdpmcbkejihhjbnh
Descrição An extension for controlling the scrubbing rate on YouTube. Hold the Ctrl key while pressing the right or left arrow keys
Tamanho do Arquivo 17.19 KB
Contagem de Instalações 45
Versão Atual 1.0
Última Atualização 2020-03-11
Data de Publicação 2020-03-10
Classificação 3.50/5 Total de 2 Avaliações
Desenvolvedor Isaac Bartlett
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Scrubbing Rate Controller",
    "short_name": "TYSRC",
    "version": "1.0",
    "description": "An extension for controlling the scrubbing rate on YouTube. Hold the Ctrl key while pressing the right or left arrow keys",
    "permissions": [
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon16.png",
            "128": "images\/icon128.png"
        }
    },
    "icons": {
        "16": "images\/icon16.png",
        "128": "images\/icon128.png"
    }
}