Youtube Playlist Duration Calculator

Youtube Playlist Duration Calculator

This extension will tell you the total duration of the youtube playlist. WARNING : You need to scroll down the whole playlist to get exact time

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Youtube Playlist Duration Calculator",
  "version": "1.0",
  "description": "This extension will Tell you the total duration of the youtube playlist. WARNING : You need to scroll down the whole playlist to get exact time",
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "96": "icon96.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*list*",
        "*://*.youtube.com/playlist*"
      ],
      "js": [
        "background.js"
      ]
    }
  ]
}