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はIsaac Bartlettによって開発されたChromeの拡張機能で、その主な機能は「An extension for controlling the scrubbing rate on YouTube. Hold the Ctrl key while pressing the right or left arrow keys」です。

拡張機能のスクリーンショット

screenshot

YouTube Scrubbing Rate Controller拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    }
}