Auto Lyric Show

Auto Lyric Show

Show music lyric automatically on Deezer, Youtube, Spotify, Joox, Google Music and Jango

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Auto Lyric Show",
  "description": "Show music lyric automatically on Deezer, Youtube, Spotify, Joox, Google Music and Jango",
  "version": "3.1",
  "manifest_version": 2,
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.deezer.com/*",
        "*://*.youtube.com/*",
        "*://open.spotify.com/*",
        "*://play.google.com/*",
        "*://www.jango.com/*",
        "*://www.joox.com/*"
      ],
      "js": [
        "jquery-2.1.4.min.js",
        "background_copy.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "storage"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}