Music Lyrics
This extension provides lyrics support for Google Music.
Music Lyrics क्या है?
Music Lyrics Daniele Nicassio द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension provides lyrics support for Google Music."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Music Lyrics एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
*** 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
एक्सटेंशन की मूल जानकारी
नाम | |
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" ] } |