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
官方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"
    ]
}