YouTube Lyrics

YouTube Lyrics

Get lyrics for any music video on YouTube.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouTube Lyrics",
  "version": "0.3.3",
  "description": "Get lyrics for any music video on YouTube.",
  "manifest_version": 3,
  "minimum_chrome_version": "93",
  "icons": {
    "16": "img/icon_16.png",
    "32": "img/icon_32.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "global.css",
        "content.css"
      ],
      "run_at": "document_start"
    }
  ],
  "host_permissions": [
    "https://*.youtube.com/",
    "https://open.spotify.com/get_access_token",
    "https://spclient.wg.spotify.com/",
    "https://api-partner.spotify.com/"
  ],
  "permissions": [
    "storage"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "resources": [
        "fonts/*",
        "get-video-info.js"
      ]
    }
  ]
}