YouTube Accelerator
Accelerate your YouTube videos even faster!
YouTube Accelerator क्या है?
YouTube Accelerator AndrewGDX द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Accelerate your YouTube videos even faster!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouTube Accelerator एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
There is no UI, only keyboard shortcuts. Use '<' and '>' buttons (without shift) to speed up or speed down the video, and press 'R' to reset to the default speed. You can change hotkeys in settings. YouTube Shorts acceleration is working as well. The plugin does not collect any statistics or personal data, feel free to use! Source code: https://github.com/AndrewGDX/YouTubeAccelerator
एक्सटेंशन की मूल जानकारी
नाम | YouTube Accelerator |
ID | kkbkajnjcpgpfkhgkcckeaindpjgfgib |
आधिकारिक URL | https://chrome.google.com/webstore/detail/youtube-accelerator/kkbkajnjcpgpfkhgkcckeaindpjgfgib |
विवरण | Accelerate your YouTube videos even faster! |
फ़ाइल का आकार | 14.29 KB |
स्थापना संख्या | 251 |
वर्तमान संस्करण | 0.6.0 |
अंतिम अपडेट | 2023-07-20 |
प्रकाशन तिथि | 2022-10-30 |
रेटिंग | 5.00/5 कुल 3 रेटिंग्स |
डेवलपर | AndrewGDX |
ईमेल | [email protected] |
गोपनीयता नीति पृष्ठ URL | https://andrewgdx.github.io/ChromeWebStorePolicy |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Accelerator", "version": "0.6.0", "description": "Accelerate your YouTube videos even faster!", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "run_at": "document_end", "css": [ "accelerator.css" ], "js": [ "accelerator_plugin.js" ] } ], "permissions": [ "storage" ], "action": { "default_icon": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "default_popup": "settings.html" }, "manifest_version": 3 } |