Examine source code of Lyricity

Inspect and view changes in Lyricity source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Lyricity",
  "version": "1.0",
  "description": "Lyrics for every song on YouTube",
  "icons": {
    "16": "images/favicon.png",
    "24": "images/favicon.png",
    "32": "images/favicon.png",
    "48": "images/favicon.png",
    "64": "images/favicon.png",
    "128": "images/favicon.png",
    "256": "images/favicon.png",
    "512": "images/favicon.png"
  },
  "background": {
    "service_worker": "scripts/src/service-worker.js"
  },
  "action": {
    "default_title": "Click to open Lyricity"
  },
  "permissions": [
    "sidePanel",
    "tabs",
    "activeTab",
    "scripting"
  ],
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Ctrl+K",
        "mac": "Command+K"
      }
    }
  },
  "host_permissions": [
    "https://*.genius.com/*",
    "https://*.youtube.com/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "pages/popup.html",
        "styles/popup.css",
        "scripts/src/popup.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}