Youtube speed control
This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?
Youtube speed control क्या है?
Youtube speed control wwf4 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Youtube speed control एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
ctrl + > - to speed up video ctrl + < - to slow down video ctrl + ? - to return x1 speed;
एक्सटेंशन की मूल जानकारी
नाम | |
ID | gdnknkknodmhgpompjfmhcodhcnamldo |
आधिकारिक URL | https://chrome.google.com/webstore/detail/youtube-speed-control/gdnknkknodmhgpompjfmhcodhcnamldo |
विवरण | This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ? |
फ़ाइल का आकार | 70.77 KB |
स्थापना संख्या | 623 |
वर्तमान संस्करण | 1.1 |
अंतिम अपडेट | 2017-11-10 |
प्रकाशन तिथि | 2017-11-10 |
रेटिंग | 4.75/5 कुल 4 रेटिंग्स |
डेवलपर | wwf4 |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube speed control", "description": "This extension allows the user to change video speed with ctrl + > and ctrl + <. To return speed to 1 press ctrl + ?", "version": "1.1", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": "icon.png" }, "permissions": [ "activeTab", "storage", "https:\/\/www.youtube.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "jquery-3.2.1.min.js", "content.js" ], "css": [ "styles.css" ], "all_frames": true } ] } |