Video Speed Controller
Control HTML video speed.
Video Speed Controller क्या है?
Video Speed Controller jojonki द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Control HTML video speed."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Video Speed Controller एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Control Youtube video speed with shortcuts. Unlike Youtube original speed adjustment, you can speed up as much as you want. - Ctrl + Shift + L : Speed Up. - Ctrl + Shift + J : Speed Down. - Ctrl + Shift + K : Speed Neutral. You can customize the shortcuts at chrome://extensions/shortcuts. The source code is fully available. https://github.com/jojonki/video-speed-controller
एक्सटेंशन की मूल जानकारी
नाम | Video Speed Controller |
ID | ndbdjjgcjmdenadephbmglknakcnalil |
आधिकारिक URL | https://chromewebstore.google.com/detail/video-speed-controller/ndbdjjgcjmdenadephbmglknakcnalil |
विवरण | Control HTML video speed. |
फ़ाइल का आकार | 637 KB |
स्थापना संख्या | 415 |
वर्तमान संस्करण | 2.0 |
अंतिम अपडेट | 2022-12-29 |
प्रकाशन तिथि | 2021-03-07 |
रेटिंग | 4.50/5 कुल 2 रेटिंग्स |
डेवलपर | jojonki |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/jojonki/video-speed-controller/ |
सहायता पृष्ठ URL | https://github.com/jojonki/video-speed-controller/ |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Video Speed Controller", "version": "2.0", "description": "Control HTML video speed.", "permissions": [ "scripting", "activeTab", "notifications" ], "host_permissions": [ "https:\/\/youtube.com\/*" ], "manifest_version": 3, "background": { "service_worker": "background.js" }, "action": { "default_icon": { "16": "images\/icon_16.png", "24": "images\/icon_24.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "default_title": "Control Video Speed" }, "commands": { "speed-up": { "suggested_key": { "default": "Ctrl+Shift+L", "mac": "MacCtrl+Shift+L" }, "description": "Speed Up", "global": false }, "speed-down": { "suggested_key": { "default": "Ctrl+Shift+J", "mac": "MacCtrl+Shift+J" }, "description": "Speed Down", "global": false }, "speed-neutral": { "suggested_key": { "default": "Ctrl+Shift+K", "mac": "MacCtrl+Shift+K" }, "description": "Speed Neutral", "global": false } }, "icons": { "16": "images\/icon_16.png", "24": "images\/icon_24.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" } } |