Music Lyrics

This extension provides lyrics support for Google Music.

Music Lyrics란 무엇입니까?

Music Lyrics은(는) Daniele Nicassio에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension provides lyrics support for Google Music."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        ***
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"
    ]
}