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."입니다.

확장 프로그램 스크린샷

screenshot

Synced Lyrics for YouTube Music 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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
}