YouTube Accelerator
Accelerate your YouTube videos even faster!
Vad är YouTube Accelerator?
YouTube Accelerator är en Chrome-tillägg utvecklad av AndrewGDX, och dess huvudfunktion är "Accelerate your YouTube videos even faster!".
Tilläggsskärmbilder
Ladda ner YouTube Accelerator-förlängningens CRX-fil
Ladda ner YouTube Accelerator-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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
Grundläggande Information om Tillägg
Namn | YouTube Accelerator |
ID | kkbkajnjcpgpfkhgkcckeaindpjgfgib |
Officiell webbadress | https://chrome.google.com/webstore/detail/youtube-accelerator/kkbkajnjcpgpfkhgkcckeaindpjgfgib |
Beskrivning | Accelerate your YouTube videos even faster! |
Filstorlek | 14.29 KB |
Antal Installationer | 251 |
Aktuell Version | 0.6.0 |
Senast Uppdaterad | 2023-07-20 |
Publiceringsdatum | 2022-10-30 |
Betyg | 5.00/5 Totalt 3 Betyg |
Utvecklare | AndrewGDX |
E-post | [email protected] |
URL till Sekretesspolicy Sidan | https://andrewgdx.github.io/ChromeWebStorePolicy |
Stödda Språk | 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 } |