Lyrics Translator on Spotify

An extension that translates lyrics in Spotify.

Co to jest Lyrics Translator on Spotify?

Lyrics Translator on Spotify to rozszerzenie Chrome opracowane przez Salih Özkara, a jego główną funkcją jest „An extension that translates lyrics in Spotify.”.

Zrzuty ekranu rozszerzenia

Pobierz plik CRX rozszerzenia Lyrics Translator on Spotify

Pobierz pliki rozszerzeń Lyrics Translator on Spotify w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        An extension that translates lyrics in Spotify.                    

Podstawowe informacje o rozszerzeniu

Nazwa Lyrics Translator on Spotify Lyrics Translator on Spotify
ID emhdnlfohgdjhebkefiandcofgldlcko
Oficjalny URL https://chromewebstore.google.com/detail/lyrics-translator-on-spot/emhdnlfohgdjhebkefiandcofgldlcko
Opis An extension that translates lyrics in Spotify.
Rozmiar pliku 16.35 KB
Liczba instalacji 445
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2023-12-28
Data Publikacji 2023-05-22
Ocena 4.56/5 Łącznie 9 Oceny
Deweloper Salih Özkara
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/salihozkara/LyricsTranslatorOnSpotify
Obsługiwane Języki 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"
            ]
        }
    ]
}