Youtube Custom Speed
Change the speed of Youtube videos to whatever you like, with customizable presets and keyboard shortcuts!
Youtube Custom Speed क्या है?
Youtube Custom Speed nizioleque द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Change the speed of Youtube videos to whatever you like, with customizable presets and keyboard shortcuts!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Youtube Custom Speed एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Youtube Custom Speed lets you play any Youtube video at any speed you like, from 0.0125x to 16x! Use the options menu to set your preferred playback rate values. Then, change the speed using buttons at the bottom of the video. It also cooperates with the default Youtube keyboard shortcuts - Shift + , and Shift + . If you experience any issues, please feel free to email me with a bug report.
एक्सटेंशन की मूल जानकारी
नाम | Youtube Custom Speed |
ID | kmfcinojnfabkpndlgomnfjllgeppegb |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-custom-speed/kmfcinojnfabkpndlgomnfjllgeppegb |
विवरण | Change the speed of Youtube videos to whatever you like, with customizable presets and keyboard shortcuts! |
फ़ाइल का आकार | 26.33 KB |
स्थापना संख्या | 6,263 |
वर्तमान संस्करण | 1.6.1 |
अंतिम अपडेट | 2022-02-19 |
प्रकाशन तिथि | 2021-12-02 |
रेटिंग | 4.71/5 कुल 48 रेटिंग्स |
डेवलपर | nizioleque |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "__MSG_extName__", "description": "__MSG_extDescription__", "version": "1.6.1", "default_locale": "en", "icons": { "128": "icons\/icon128.png" }, "permissions": [ "storage" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "options\/options.html" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content\/content.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content\/changespeed.js", "content\/kbshort.js", "content\/menu.js", "content\/observer.js", "content\/configure.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ { "resources": [ "ui.html" ], "matches": [ "*:\/\/www.youtube.com\/*" ] } ], "options_ui": { "page": "options\/options.html", "open_in_tab": false } } |