Synced Lyrics for YouTube Music

Replaces YouTube Music lyrics with synced lyrics if available.

Cos'è Synced Lyrics for YouTube Music?

Synced Lyrics for YouTube Music è un'estensione di Chrome sviluppata da Patrik Ackermann, e la sua funzione principale è "Replaces YouTube Music lyrics with synced lyrics if available.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Synced Lyrics for YouTube Music

Scarica i file di estensione Synced Lyrics for YouTube Music in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Synced Lyrics for YouTube Music Synced Lyrics for YouTube Music
ID mdenoppdglojbigppnfogdibojpjffnp
URL Ufficiale https://chromewebstore.google.com/detail/synced-lyrics-for-youtube/mdenoppdglojbigppnfogdibojpjffnp
Descrizione Replaces YouTube Music lyrics with synced lyrics if available.
Dimensione del File 11.37 KB
Conteggio Installazioni 64
Versione Corrente 1.0.2
Ultimo Aggiornamento 2023-07-27
Data di Pubblicazione 2023-07-18
Valutazione 1.00/5 Totale 4 Valutazioni
Sviluppatore Patrik Ackermann
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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
}