YouTube Accelerator

Accelerate your YouTube videos even faster!

ما هو YouTube Accelerator؟

YouTube Accelerator هو إضافة Chrome تم تطويرها بواسطة AndrewGDX، والميزة الرئيسية لها هي "Accelerate your YouTube videos even faster!".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة YouTube Accelerator

قم بتنزيل ملفات الامتداد YouTube Accelerator بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 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]
عنوان صفحة سياسة الخصوصية 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
}