Video Speed Up
Accelerates video playback with a single click on the extension button. Works with HTML5 videos and audio elements.
Video Speed Up क्या है?
Video Speed Up no9 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Accelerates video playback with a single click on the extension button. Works with HTML5 videos and audio elements."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Video Speed Up एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
The extension's function is to accelerate video playback and slow it down below normal speed. It works with video and audio elements on websites that support it. To activate the extension, simply left-click on its icon. Right-clicking on the extension's icon reveals a menu with additional options that may be useful in certain situations. Known issue: - On some webpages, it is not possible to adjust the speed of the played elements. This is due to how the specific page is designed. If you find this extension useful, you may consider supporting the author with a donation of any amount.
एक्सटेंशन की मूल जानकारी
नाम | Video Speed Up |
ID | glehbmcdknkgdibnilmbinohdnmjggoo |
आधिकारिक URL | https://chromewebstore.google.com/detail/video-speed-up/glehbmcdknkgdibnilmbinohdnmjggoo |
विवरण | Accelerates video playback with a single click on the extension button. Works with HTML5 videos and audio elements. |
फ़ाइल का आकार | 45.53 KB |
स्थापना संख्या | 1,253 |
वर्तमान संस्करण | 1.5.7.5 |
अंतिम अपडेट | 2023-07-26 |
प्रकाशन तिथि | 2019-10-30 |
रेटिंग | 2.80/5 कुल 5 रेटिंग्स |
डेवलपर | no9 |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Video Speed Up", "description": "Accelerates video playback with a single click on the extension button. Works with HTML5 videos and audio elements.", "version": "1.5.7.5", "author": "[email protected]", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*\/*" ], "js": [ "VSUScript.js" ], "run_at": "document_end" } ], "permissions": [ "activeTab", "contextMenus" ], "host_permissions": [ "http:\/\/*\/", "https:\/\/*\/", "file:\/\/\/*\/" ], "action": { "default_icon": "icon19.png" }, "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "64": "icon64.png", "128": "icon128.png" } } |