Youtube Playlist Analyser

Youtube Playlist Analyser

YouTube Playlist Analyzer This extension will get and display the duration of YouTube playlist (max length 500) at multiple speeds…

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Youtube Playlist Analyser",
  "version": "1.0.0",
  "web_accessible_resources": [
    {
      "resources": [
        "js/script.js"
      ],
      "matches": [
        "*://*.youtube.com/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "js/Content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "assets/16x16.png",
    "48": "assets/48x48.png",
    "128": "assets/128x128.png"
  }
}