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

Co to jest YouTube Scrubbing Rate Controller?

YouTube Scrubbing Rate Controller to rozszerzenie Chrome opracowane przez Isaac Bartlett, a jego główną funkcją jest „An extension for controlling the scrubbing rate on YouTube. Hold the Ctrl key while pressing the right or left arrow keys”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia YouTube Scrubbing Rate Controller

Pobierz pliki rozszerzeń YouTube Scrubbing Rate Controller w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa YouTube Scrubbing Rate Controller YouTube Scrubbing Rate Controller
ID mbigoenlkbemdkkjhdpmcbkejihhjbnh
Oficjalny URL https://chromewebstore.google.com/detail/youtube-scrubbing-rate-co/mbigoenlkbemdkkjhdpmcbkejihhjbnh
Opis An extension for controlling the scrubbing rate on YouTube. Hold the Ctrl key while pressing the right or left arrow keys
Rozmiar pliku 17.19 KB
Liczba instalacji 45
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2020-03-11
Data Publikacji 2020-03-10
Ocena 3.50/5 Łącznie 2 Oceny
Deweloper Isaac Bartlett
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
    }
}