Music Lyrics

This extension provides lyrics support for Google Music.

Music Lyricsคืออะไร?

Music Lyrics เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Daniele Nicassio และคุณลักษณะหลักของมันคือ "This extension provides lyrics support for Google Music."

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

screenshot

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

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

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

                        ***
UPDATE: this extension doesn't work well anymore. Actually it still works, but most recent versions of Chrome will block the fetching of the lyrics because it is made via http while music.google.com is loaded through https. This means that chrome will show a warning triangle in the right part of the address bar saying that unsafe scripts have been blocked. Clicking there, you can activate the scripts and the extension will work again. Unfortunately I have no time to update the extension and find a workaround, so this will stay this way. Sorry.
***


This extension adds support for lyrics in Google Music. 
It is very simple: when you play a song, it tries to fetch the corresponding lyrics, then if you want to see them you just have to click on the lyrics button next to the player controls.
It's still in beta stage, it needs the title and the artist to be spelled correctly and it relies on third party services to fetch the lyrics.

1.1.0: Now implements auto scrolling                    

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

ชื่อ Music Lyrics Music Lyrics
ID eeklfccjceiaedlpiggcjaplbbdbljgh
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/music-lyrics/eeklfccjceiaedlpiggcjaplbbdbljgh
คำอธิบาย This extension provides lyrics support for Google Music.
ขนาดไฟล์ 6.72 KB
จำนวนการติดตั้ง 138
เวอร์ชันปัจจุบัน 1.1.2
อัปเดตครั้งล่าสุด 2015-02-16
วันที่เผยแพร่ 2015-02-16
คะแนน 3.27/5 รวมทั้งหมด 11 คะแนน
ผู้พัฒนา Daniele Nicassio
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://www.nicassio.it/daniele/blog
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Music Lyrics",
    "description": "This extension provides lyrics support for Google Music.",
    "version": "1.1.2",
    "permissions": [
        "http:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/play.google.com\/*"
            ],
            "js": [
                "script.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "img\/ics.png",
        "img\/lyrics.png"
    ]
}