YouTube Playlist Length - Duration Display

YouTube Playlist Length - Duration Display

A Lightweight extension that displays the length of the current YouTube playlist

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouTube Playlist Length - Duration Display",
  "description": "A Lightweight extension that displays the length of the current YouTube playlist",
  "version": "0.1.9",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "action": {
    "default_popup": "./popup/popup.html"
  },
  "icons": {
    "48": "./logo48.png",
    "128": "./logo128.png"
  }
}