Chrome playback speed controller
Controls the playback speed of your youtube or udemy video
Chrome playback speed controller क्या है?
Chrome playback speed controller Jean Sidharta द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Controls the playback speed of your youtube or udemy video"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Chrome playback speed controller एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
If the current tab is not a Youtube or Udemy video, the extension icon will appear grayed-out and will be disabled. Otherwise, clicking it will display a pop-up with a number, a slider and a button named "reset": - The number displays the current video speed. It will change according to the slider. If you desire a specific speed, you may manually type the number you want. It's maximum precision, however is of 0.1. More decimal numbers will be rounded. - The slider controls the video speed, going from 0.0 to 15.9 - The reset button will set the video speed to 1.0
एक्सटेंशन की मूल जानकारी
नाम | Chrome playback speed controller |
ID | jjapmdbeieeoeaebndobpmjfckbimhon |
आधिकारिक URL | https://chromewebstore.google.com/detail/chrome-playback-speed-con/jjapmdbeieeoeaebndobpmjfckbimhon |
विवरण | Controls the playback speed of your youtube or udemy video |
फ़ाइल का आकार | 62.85 KB |
स्थापना संख्या | 891 |
वर्तमान संस्करण | 1.2.1 |
अंतिम अपडेट | 2019-06-05 |
प्रकाशन तिथि | 2019-06-04 |
रेटिंग | 3.71/5 कुल 7 रेटिंग्स |
डेवलपर | Jean Sidharta |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/Jeansidharta/Youtube-Playback-speed-extension |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Chrome playback speed controller", "description": "Controls the playback speed of your youtube or udemy video", "version": "1.2.1", "author": "Jean Sidharta Rocha Guzman", "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "injectedYoutube.js" ] }, { "matches": [ "*:\/\/www.udemy.com\/*" ], "js": [ "injectedUdemy.js" ] } ], "background": { "persistent": false, "scripts": [ "background.js" ] }, "browser_action": { "default_icon": { "16": "images\/logo16.png", "24": "images\/logo24.png", "32": "images\/logo32.png", "128": "images\/logo128.png" }, "default_title": "Youtube playback speed", "default_popup": "popup\/popup.html" }, "icons": { "16": "images\/logo16.png", "24": "images\/logo24.png", "32": "images\/logo32.png", "128": "images\/logo128.png" }, "permissions": [ "activeTab", "tabs" ] } |