Synced Lyrics for YouTube Music

Replaces YouTube Music lyrics with synced lyrics if available.

ما هو Synced Lyrics for YouTube Music؟

Synced Lyrics for YouTube Music هو إضافة Chrome تم تطويرها بواسطة Patrik Ackermann، والميزة الرئيسية لها هي "Replaces YouTube Music lyrics with synced lyrics if available.".

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

screenshot

تحميل ملف CRX للإضافة Synced Lyrics for YouTube Music

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

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

                        This browser extension adds synced lyrics to YouTube music. This means that the words that you currently hear are highlighted.

To use this extension you need a Spotify developer account. It's free and can be made in less than a minute. You can find further instructions in the extensions settings.                    

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

الاسم Synced Lyrics for YouTube Music Synced Lyrics for YouTube Music
ID mdenoppdglojbigppnfogdibojpjffnp
عنوان URL الرسمي https://chromewebstore.google.com/detail/synced-lyrics-for-youtube/mdenoppdglojbigppnfogdibojpjffnp
الوصف Replaces YouTube Music lyrics with synced lyrics if available.
حجم الملف 11.37 KB
عدد التثبيتات 64
النسخة الحالية 1.0.2
آخر تحديث 2023-07-27
تاريخ النشر 2023-07-18
تقييم 1.00/5 مجموع تقييمات 4
المطور Patrik Ackermann
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Synced Lyrics for YouTube Music",
    "version": "1.0.2",
    "description": "Replaces YouTube Music lyrics with synced lyrics if available.",
    "icons": {
        "128": "syncedLyricsIcon.png"
    },
    "permissions": [
        "storage",
        "*:\/\/music.youtube.com\/*"
    ],
    "host_permissions": [],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_title": "Synced Lyrics for YouTube Music"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/music.youtube.com\/*"
            ],
            "js": [
                "main.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "manifest_version": 3
}