Lyrics for YouTube Music

Search and show lyrics for YouTube Music, from Melon and Genius.

Lyrics for YouTube Musicคืออะไร?

Lyrics for YouTube Music เป็นส่วนขยายของ Chrome ที่พัฒนาโดย msj และคุณลักษณะหลักของมันคือ "Search and show lyrics for YouTube Music, from Melon and Genius."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Lyrics for YouTube Music

ดาวน์โหลดไฟล์ส่วนขยาย Lyrics for YouTube Music ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Lyrics For YouTube Music은 YouTube Music에서 재생 중인 곡의 가사를 Melon과 Genius에서 자동으로 검색하는 확장 프로그램입니다.

YouTube Music에서 음악을 듣고 있다면 크롬 탭 우측 상단 아이콘을 눌러 가사를 볼 수 있습니다.

피드백, 버그리포트 등은 부담 없이 댓글이나 이메일 남겨주시기 바랍니다.

즐거운 음악 감상 되세요!

* v3 이후 가사 로딩이 오래 걸리는 것은 크롬 익스텐션의 구조 변경 때문입니다. 해결 방법을 고민 중이니 조금만 기다려주세요!

주요 기능

v 3.4.0
- Genius html 구조 변경 대응

v 3.3.0
- 서비스 워커 비활성 상태 대응
- 여러 유튜브 뮤직 탭을 사용하는 상황 대응

v 3.2.0
- 서비스 워커 비활성 상태 대응
- 검색 가사 저장 기능 추가

v 3.1.0
- 서비스 워커 비활성 상태 대응
- 유튜브 뮤직 탭 새로고침 대응

v 3.0.0
- 서비스 워커 비활성 상태 대응
- 최적 가사 선택 알고리즘 변경


Lyrics For YouTube Music identifies the song you're currently playing on YouTube Music, and fetches its lyrics from Melon and Genius.

You can browse the lyrics by clicking the extension icon at any chrome tab as long as you're playing the song.

If you have any feedback, bug report or anything, please feel free to contact via comments or email.

Enjoy!

* Slower fetching since v3 is due to internal changes to Chrome extensions. I'm trying hard to get over it.

Main Functionalities

v 3.4.0
- Handle Genius html structure change

v 3.3.0
- Better support for idle service worker
- Support multiple YouTube Music tabs at once

v 3.2.0
- Better support for idle service worker
- Support saving searched lyrics

v 3.1.0
- Better support for idle service worker
- Support YouTube Music tab refresh

v 3.0.0
- Support for idle service worker
- Fix best fit lyrics algorithm                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Lyrics for YouTube Music Lyrics for YouTube Music
ID hjkbobjfhcnhjmlkjiagpccjdjnkogdi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/lyrics-for-youtube-music/hjkbobjfhcnhjmlkjiagpccjdjnkogdi
คำอธิบาย Search and show lyrics for YouTube Music, from Melon and Genius.
ขนาดไฟล์ 244 KB
จำนวนการติดตั้ง 3,000
เวอร์ชันปัจจุบัน 3.4.0
อัปเดตครั้งล่าสุด 2023-11-28
วันที่เผยแพร่ 2021-01-17
คะแนน 4.13/5 รวมทั้งหมด 30 คะแนน
ผู้พัฒนา msj
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Lyrics for YouTube Music",
    "version": "3.4.0",
    "description": "Search and show lyrics for YouTube Music, from Melon and Genius.",
    "permissions": [
        "storage",
        "scripting",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/*.genius.com\/",
        "https:\/\/*.melon.com\/",
        "*:\/\/music.youtube.com\/*"
    ],
    "action": {
        "default_icon": {
            "128": ".\/assets\/128.png"
        },
        "default_title": "Lyrics For YouTube Music",
        "default_popup": "popup.html"
    },
    "icons": {
        "128": ".\/assets\/128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/music.youtube.com\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "background": {
        "service_worker": "service_worker.js",
        "type": "module"
    },
    "manifest_version": 3
}