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.5",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "name": "Find youtube video tags/keywords for the video you are watching",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "3.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "jquery.js",
        "contentScript.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "1.png",
    "48": "2.png",
    "128": "3.png"
  },
  "web_accessible_resources": [
    "*.png",
    "*.PNG",
    "youtubekeyword.js"
  ],
  "permissions": [
    "*://*.youtube.com/*"
  ],
  "manifest_version": 2
}