Lyrics Translator on Spotify
An extension that translates lyrics in Spotify.
Was ist Lyrics Translator on Spotify?
Lyrics Translator on Spotify ist eine Chrome-Erweiterung, die von Salih Özkara entwickelt wurde, und ihr Hauptmerkmal ist "An extension that translates lyrics in Spotify.".
Erweiterungsscreenshots
Lyrics Translator on Spotify-Erweiterungs-CRX-Datei herunterladen
Laden Sie Lyrics Translator on Spotify-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
An extension that translates lyrics in Spotify.
Grundlegende Informationen zur Erweiterung
Name | Lyrics Translator on Spotify |
ID | emhdnlfohgdjhebkefiandcofgldlcko |
Offizielle URL | https://chromewebstore.google.com/detail/lyrics-translator-on-spot/emhdnlfohgdjhebkefiandcofgldlcko |
Beschreibung | An extension that translates lyrics in Spotify. |
Dateigröße | 16.35 KB |
Installationsanzahl | 445 |
Aktuelle Version | 1.1 |
Letztes Update | 2023-12-28 |
Veröffentlichungsdatum | 2023-05-22 |
Bewertung | 4.56/5 Insgesamt 9 Bewertungen |
Entwickler | Salih Özkara |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/salihozkara/LyricsTranslatorOnSpotify |
Unterstützte Sprachen | 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" ] } ] } |