Audio Delay

Add delay to audio

ما هو Audio Delay؟

Audio Delay هو إضافة Chrome تم تطويرها بواسطة mchangrh، والميزة الرئيسية لها هي "Add delay to audio".

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

screenshot

تحميل ملف CRX للإضافة Audio Delay

قم بتنزيل ملفات الامتداد Audio Delay بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Delays audio with WebAudio API.

Similar to other extensions, this extension intentionally delays and desyncs audio from linked video with the Web Audio API for compatibility with other extensions

Licenced under the MIT Licence
Source code at https://github.com/mchangrh/audio-delay

Changelog:

v0.2
- Added support for more than just YouTube, fixed edge cases where audio would not attach.                    

معلومات أساسية عن التمديد

الاسم Audio Delay Audio Delay
ID igaalhggadkifhnjchngkijkebilcajg
عنوان URL الرسمي https://chromewebstore.google.com/detail/audio-delay/igaalhggadkifhnjchngkijkebilcajg
الوصف Add delay to audio
حجم الملف 25.5 KB
عدد التثبيتات 1,441
النسخة الحالية 0.2.1
آخر تحديث 2023-03-16
تاريخ النشر 2022-02-08
تقييم 2.73/5 مجموع تقييمات 22
المطور mchangrh
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/mchangrh/audio-delay
عنوان صفحة المساعدة https://github.com/mchangrh/audio-delay/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Audio Delay",
    "description": "Add delay to audio",
    "version": "0.2.1",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_idle",
            "matches": [
                ""
            ],
            "js": [
                "src\/content.js"
            ]
        }
    ],
    "action": {
        "default_icon": "icons\/128.png",
        "default_popup": "src\/popup.html",
        "default_title": "Audio Delay"
    },
    "options_page": "src\/options.html"
}