Synced Lyrics for YouTube Music

Replaces YouTube Music lyrics with synced lyrics if available.

Hvad er Synced Lyrics for YouTube Music?

Synced Lyrics for YouTube Music er en Chrome-udvidelse udviklet af Patrik Ackermann, og dens hovedfunktion er "Replaces YouTube Music lyrics with synced lyrics if available.".

Udvidelsesskærmbilleder

screenshot

Download Synced Lyrics for YouTube Music-udvidelses-CRX-fil

Download Synced Lyrics for YouTube Music-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Synced Lyrics for YouTube Music Synced Lyrics for YouTube Music
ID mdenoppdglojbigppnfogdibojpjffnp
Officiel URL https://chromewebstore.google.com/detail/synced-lyrics-for-youtube/mdenoppdglojbigppnfogdibojpjffnp
Beskrivelse Replaces YouTube Music lyrics with synced lyrics if available.
Filstørrelse 11.37 KB
Antal Installationer 64
Nuværende Version 1.0.2
Senest Opdateret 2023-07-27
Udgivelsesdato 2023-07-18
Bedømmelse 1.00/5 Samlet 4 Bedømmelser
Udvikler Patrik Ackermann
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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
}