Lyrics Translator on Spotify

An extension that translates lyrics in Spotify.

Wat is Lyrics Translator on Spotify?

Lyrics Translator on Spotify is een Chrome-extensie ontwikkeld door Salih Özkara, en de belangrijkste functie is "An extension that translates lyrics in Spotify.".

Extensie Screenshots

Download het CRX-bestand van de extensie Lyrics Translator on Spotify

Download Lyrics Translator on Spotify-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        An extension that translates lyrics in Spotify.                    

Basisinformatie over de Extensie

Naam Lyrics Translator on Spotify Lyrics Translator on Spotify
ID emhdnlfohgdjhebkefiandcofgldlcko
Officiële URL https://chromewebstore.google.com/detail/lyrics-translator-on-spot/emhdnlfohgdjhebkefiandcofgldlcko
Beschrijving An extension that translates lyrics in Spotify.
Bestandsgrootte 16.35 KB
Aantal Installaties 445
Huidige Versie 1.1
Laatst Bijgewerkt 2023-12-28
Publicatiedatum 2023-05-22
Beoordeling 4.56/5 Totaal 9 Beoordelingen
Ontwikkelaar Salih Özkara
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/salihozkara/LyricsTranslatorOnSpotify
Ondersteunde Talen 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"
            ]
        }
    ]
}