Show YouTube Video Tags (Advanced)

Show YouTube Video Tags (Advanced)

See all the Tags of a YouTube video. The extension also shows the total amount of tags and calculates the top 3 most used keywords.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Show YouTube Video Tags (Advanced)",
  "version": "0.0.0.2",
  "description": "See all the Tags of a YouTube video. The extension also shows the total amount of tags and calculates the top 3 most used keywords.",
  "manifest_version": 3,
  "permissions": [
    "storage",
    "commands"
  ],
  "content_scripts": [
    {
      "js": [
        "lib/jquery.js",
        "lib/bootstrap.min.js",
        "inject.js"
      ],
      "css": [
        "css/bootstrap.min.css",
        "css/custom.css"
      ],
      "run_at": "document_idle",
      "matches": [
        "*://www.youtube.com/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "commands": {
    "toggle-extension": {
      "suggested_key": "Ctrl+X",
      "description": "Toggle extension"
    }
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "logo.png",
      "32": "logo.png",
      "48": "logo.png",
      "128": "logo.png"
    }
  },
  "icons": {
    "16": "logo.png",
    "32": "logo.png",
    "48": "logo.png",
    "128": "logo.png"
  }
}