Lyrics Translator on Spotify

An extension that translates lyrics in Spotify.

Cos'è Lyrics Translator on Spotify?

Lyrics Translator on Spotify è un'estensione di Chrome sviluppata da Salih Özkara, e la sua funzione principale è "An extension that translates lyrics in Spotify.".

Screenshot dell'Estensione

Scarica il file CRX dell'estensione Lyrics Translator on Spotify

Scarica i file di estensione Lyrics Translator on Spotify 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

                        An extension that translates lyrics in Spotify.                    

Informazioni di Base sull'Estensione

Nome Lyrics Translator on Spotify Lyrics Translator on Spotify
ID emhdnlfohgdjhebkefiandcofgldlcko
URL Ufficiale https://chromewebstore.google.com/detail/lyrics-translator-on-spot/emhdnlfohgdjhebkefiandcofgldlcko
Descrizione An extension that translates lyrics in Spotify.
Dimensione del File 16.35 KB
Conteggio Installazioni 445
Versione Corrente 1.1
Ultimo Aggiornamento 2023-12-28
Data di Pubblicazione 2023-05-22
Valutazione 4.56/5 Totale 9 Valutazioni
Sviluppatore Salih Özkara
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/salihozkara/LyricsTranslatorOnSpotify
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Lyrics Translator on Spotify",
    "version": "1.1",
    "description": "An extension that translates lyrics in Spotify.",
    "author": "Salih \u00d6zkara",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "activeTab",
        "storage",
        "scripting"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/open.spotify.com\/*",
                "https:\/\/open.spotify.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}