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"
    }
}