Metadata for YouTube

Metadata for YouTube

Visualize the comment activity of YouTube videos

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Metadata for YouTube",
  "short_name": "Metadata for YouTube",
  "description": "Visualize the comment activity of YouTube videos",
  "version": "1.1",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "css": [
        "/static/css/main.css"
      ],
      "js": [
        "/static/js/main.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "oauth2": {
    "client_id": "223132972673-rsltea1q13hmlkt3okva52e7ibq2eumm.apps.googleusercontent.com",
    "scopes": [
      "email",
      "openid",
      "profile"
    ]
  }
}