Music Lyrics

This extension provides lyrics support for Google Music.

O que é Music Lyrics?

Music Lyrics é uma extensão do Chrome desenvolvida por Daniele Nicassio, e sua principal característica é "This extension provides lyrics support for Google Music.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Music Lyrics

Baixe arquivos de extensão Music Lyrics no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        ***
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                    

Informações Básicas da Extensão

Nome Music Lyrics Music Lyrics
ID eeklfccjceiaedlpiggcjaplbbdbljgh
URL Oficial https://chrome.google.com/webstore/detail/music-lyrics/eeklfccjceiaedlpiggcjaplbbdbljgh
Descrição This extension provides lyrics support for Google Music.
Tamanho do Arquivo 6.72 KB
Contagem de Instalações 138
Versão Atual 1.1.2
Última Atualização 2015-02-16
Data de Publicação 2015-02-16
Classificação 3.27/5 Total de 11 Avaliações
Desenvolvedor Daniele Nicassio
Tipo de Pagamento free
Site da Extensão http://www.nicassio.it/daniele/blog
Idiomas Suportados 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"
    ]
}