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

Что такое YouTube Scrubbing Rate Controller?

YouTube Scrubbing Rate Controller - это расширение Chrome, разработанное Isaac Bartlett, и его основная функция - "An extension for controlling the scrubbing rate on YouTube. Hold the Ctrl key while pressing the right or left arrow keys".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения YouTube Scrubbing Rate Controller

Скачайте файлы расширений YouTube Scrubbing Rate Controller в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название YouTube Scrubbing Rate Controller YouTube Scrubbing Rate Controller
ID mbigoenlkbemdkkjhdpmcbkejihhjbnh
Официальный URL https://chromewebstore.google.com/detail/youtube-scrubbing-rate-co/mbigoenlkbemdkkjhdpmcbkejihhjbnh
Описание An extension for controlling the scrubbing rate on YouTube. Hold the Ctrl key while pressing the right or left arrow keys
Размер файла 17.19 KB
Количество установок 45
Текущая Версия 1.0
Последнее Обновление 2020-03-11
Дата публикации 2020-03-10
Рейтинг 3.50/5 Всего 2 оценок
Разработчик Isaac Bartlett
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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"
    }
}