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