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文件

下載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
官方網址 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"
    ]
}