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 |
Eメール | [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 } |