Lyrics Translator on Spotify
An extension that translates lyrics in Spotify.
What is Lyrics Translator on Spotify?
Lyrics Translator on Spotify is a Chrome extension developed by Salih Özkara, and its main feature is "An extension that translates lyrics in Spotify.".
Extension Screenshots
Download Lyrics Translator on Spotify Extension CRX File
Download Lyrics Translator on Spotify extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
An extension that translates lyrics in Spotify.
Extension Basic Information
Name | Lyrics Translator on Spotify |
ID | emhdnlfohgdjhebkefiandcofgldlcko |
Official URL | https://chromewebstore.google.com/detail/lyrics-translator-on-spot/emhdnlfohgdjhebkefiandcofgldlcko |
Description | An extension that translates lyrics in Spotify. |
File Size | 16.35 KB |
Installation Count | 445 |
Current Version | 1.1 |
Last Updated | 2023-12-28 |
Publish Date | 2023-05-22 |
Rating | 4.56/5 Total 9 Ratings |
Developer | Salih Özkara |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/salihozkara/LyricsTranslatorOnSpotify |
Supported Languages | 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" ] } ] } |