YouTube Playlist Time Info

YouTube Playlist Time Info

A WEB extension that show you the time stats of your YouTube playlists! Relax, we don't need your credentials.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "version": "0.0.4",
  "name": "YouTube Playlist Time Info",
  "description": "A WEB extension that show you the time stats of your YouTube playlists! Relax, we don't need your credentials.",
  "author": "Vitor Pereira Fontes",
  "homepage_url": "https://github.com/vitor0p9f/youtube-playlist-time-info",
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "index.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "./icon-16.png",
    "32": "./icon-32.png",
    "48": "./icon-48.png",
    "64": "./icon-64.png",
    "128": "./icon-128.png"
  },
  "permissions": [
    "activeTab"
  ],
  "host_permissions": [
    "*://*.youtube.com/*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{7f174d0f-3352-43cf-b1e1-e18ca697b44c}"
    }
  }
}