Lyrics Translator on Spotify
An extension that translates lyrics in Spotify.
什么是Lyrics Translator on Spotify?
Lyrics Translator on Spotify是由Salih Özkara开发的Chrome扩展程序,该扩展的主要功能是“An extension that translates lyrics in Spotify.”。
扩展截图
下载Lyrics Translator on Spotify扩展crx文件
下载Lyrics Translator on Spotify扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
An extension that translates lyrics in Spotify.
扩展基本信息
名称 | Lyrics Translator on Spotify |
ID | emhdnlfohgdjhebkefiandcofgldlcko |
官方URL | https://chromewebstore.google.com/detail/lyrics-translator-on-spot/emhdnlfohgdjhebkefiandcofgldlcko |
简介 | An extension that translates lyrics in Spotify. |
文件大小 | 16.35 KB |
安装次数 | 445 |
当前版本 | 1.1 |
更新时间 | 2023-12-28 |
上架时间 | 2023-05-22 |
评分 | 4.56/5 共9次评分 |
开发者 | Salih Özkara |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/salihozkara/LyricsTranslatorOnSpotify |
支持的语言 | 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" ] } ] } |