Synced Lyrics for YouTube Music
Replaces YouTube Music lyrics with synced lyrics if available.
什么是Synced Lyrics for YouTube Music?
Synced Lyrics for YouTube Music是由Patrik Ackermann开发的Chrome扩展程序,该扩展的主要功能是“Replaces YouTube Music lyrics with synced lyrics if available.”。
扩展截图
下载Synced Lyrics for YouTube Music扩展crx文件
下载Synced Lyrics for YouTube Music扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This browser extension adds synced lyrics to YouTube music. This means that the words that you currently hear are highlighted. To use this extension you need a Spotify developer account. It's free and can be made in less than a minute. You can find further instructions in the extensions settings.
扩展基本信息
名称 | Synced Lyrics for YouTube Music |
ID | mdenoppdglojbigppnfogdibojpjffnp |
官方URL | https://chromewebstore.google.com/detail/synced-lyrics-for-youtube/mdenoppdglojbigppnfogdibojpjffnp |
简介 | Replaces YouTube Music lyrics with synced lyrics if available. |
文件大小 | 11.37 KB |
安装次数 | 64 |
当前版本 | 1.0.2 |
更新时间 | 2023-07-27 |
上架时间 | 2023-07-18 |
评分 | 1.00/5 共4次评分 |
开发者 | Patrik Ackermann |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Synced Lyrics for YouTube Music", "version": "1.0.2", "description": "Replaces YouTube Music lyrics with synced lyrics if available.", "icons": { "128": "syncedLyricsIcon.png" }, "permissions": [ "storage", "*:\/\/music.youtube.com\/*" ], "host_permissions": [], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_title": "Synced Lyrics for YouTube Music" }, "content_scripts": [ { "matches": [ "*:\/\/music.youtube.com\/*" ], "js": [ "main.js" ], "css": [ "style.css" ] } ], "manifest_version": 3 } |