YouTube Accelerator
Accelerate your YouTube videos even faster!
Apa itu YouTube Accelerator?
YouTube Accelerator adalah ekstensi Chrome yang dikembangkan oleh AndrewGDX, dan fitur utamanya adalah "Accelerate your YouTube videos even faster!".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi YouTube Accelerator
Unduh file ekstensi YouTube Accelerator dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | YouTube Accelerator |
ID | kkbkajnjcpgpfkhgkcckeaindpjgfgib |
URL Resmi | https://chrome.google.com/webstore/detail/youtube-accelerator/kkbkajnjcpgpfkhgkcckeaindpjgfgib |
Deskripsi | Accelerate your YouTube videos even faster! |
Ukuran File | 14.29 KB |
Jumlah Instalasi | 251 |
Versi Saat Ini | 0.6.0 |
Terakhir Diperbarui | 2023-07-20 |
Tanggal Publikasi | 2022-10-30 |
Penilaian | 5.00/5 Total 3 Penilaian |
Pengembang | AndrewGDX |
[email protected] | |
URL Halaman Kebijakan Privasi | https://andrewgdx.github.io/ChromeWebStorePolicy |
Bahasa yang Didukung | 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 } |