Examine source code of Lời Bài Hát

Inspect and view changes in Lời Bài Hát 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": "Lời Bài Hát",
  "description": "Tìm và lưu lời bài hát yêu thích của bạn.",
  "version": "1.0.1",
  "background": {
    "service_worker": "/background.js"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "sidePanel",
    "storage",
    "unlimitedStorage"
  ],
  "icons": {
    "16": "/assets/icons/logo128.png",
    "32": "/assets/icons/logo128.png",
    "48": "/assets/icons/logo128.png",
    "128": "/assets/icons/logo128.png"
  },
  "side_panel": {
    "default_path": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "/content.js"
      ]
    }
  ],
  "host_permissions": [
    "https://*"
  ]
}