Lyrics Translator on Spotify
An extension that translates lyrics in Spotify.
Apa itu Lyrics Translator on Spotify?
Lyrics Translator on Spotify adalah ekstensi Chrome yang dikembangkan oleh Salih Özkara, dan fitur utamanya adalah "An extension that translates lyrics in Spotify.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Lyrics Translator on Spotify
Unduh file ekstensi Lyrics Translator on Spotify dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
An extension that translates lyrics in Spotify.
Informasi Dasar Ekstensi
Nama | Lyrics Translator on Spotify |
ID | emhdnlfohgdjhebkefiandcofgldlcko |
URL Resmi | https://chromewebstore.google.com/detail/lyrics-translator-on-spot/emhdnlfohgdjhebkefiandcofgldlcko |
Deskripsi | An extension that translates lyrics in Spotify. |
Ukuran File | 16.35 KB |
Jumlah Instalasi | 445 |
Versi Saat Ini | 1.1 |
Terakhir Diperbarui | 2023-12-28 |
Tanggal Publikasi | 2023-05-22 |
Penilaian | 4.56/5 Total 9 Penilaian |
Pengembang | Salih Özkara |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/salihozkara/LyricsTranslatorOnSpotify |
Bahasa yang Didukung | 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" ] } ] } |