Music Lyrics

This extension provides lyrics support for Google Music.

Co je Music Lyrics?

Music Lyrics je rozšíření Chrome vyvinuté Daniele Nicassio, a jeho hlavní funkcí je „This extension provides lyrics support for Google Music.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Music Lyrics

Stáhněte si soubory rozšíření Music Lyrics ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Music Lyrics Music Lyrics
ID eeklfccjceiaedlpiggcjaplbbdbljgh
Oficiální URL https://chrome.google.com/webstore/detail/music-lyrics/eeklfccjceiaedlpiggcjaplbbdbljgh
Popis This extension provides lyrics support for Google Music.
Velikost souboru 6.72 KB
Počet instalací 138
Aktuální Verze 1.1.2
Poslední Aktualizace 2015-02-16
Datum Vydání 2015-02-16
Hodnocení 3.27/5 Celkem 11 Hodnocení
Vývojář Daniele Nicassio
Typ Platby free
Webové stránky Rozšíření http://www.nicassio.it/daniele/blog
Podporované Jazyky 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"
    ]
}