Playcount for YouTube™ Music

Playcount for YouTube™ Music

Display playcount and release year alongside tracks in YouTube™ Music

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Playcount for YouTube™ Music",
  "version": "1.3",
  "manifest_version": 3,
  "description": "Display playcount and release year alongside tracks in YouTube™ Music",
  "host_permissions": [
    "https://ytmusic-enhancer.000webhostapp.com/*"
  ],
  "icons": {
    "16": "icons/icon_16.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "background": {
    "service_worker": "src/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://music.youtube.com/*"
      ],
      "js": [
        "src/utils.js",
        "src/track_metadata.js"
      ]
    }
  ]
}