Youtube Tags

Youtube Tags

Find tags of youtube video tags

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Youtube Tags",
  "description": "Find tags of youtube video tags",
  "update_url": "http://clients2.google.com/service/update2/crx",
  "version": "2.1.7",
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "1.png",
      "48": "2.png",
      "128": "3.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*",
        "https://youtube.com/*"
      ],
      "js": [
        "jquery.js",
        "contentScript.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "1.png",
    "48": "2.png",
    "128": "3.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "youtubekeyword.js"
      ],
      "matches": [
        "https://youtube.com/*",
        "https://www.youtube.com/*"
      ]
    }
  ],
  "permissions": [],
  "host_permissions": [
    "*://*.youtube.com/*"
  ],
  "manifest_version": 3
}