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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension for controlling the scrubbing rate on YouTube. Hold the Ctrl key while pressing the right or left arrow keys"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouTube Scrubbing Rate Controller एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" } } |