YouTube Comments

YouTube Comments

YouTube comments chrome extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouTube Comments",
  "short_name": "YTC Extension",
  "version": "1.0",
  "description": "YouTube comments chrome extension",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "activeTab",
    "declarativeContent",
    "storage",
    "webRequest",
    "*://*.youtube.com/*",
    "webRequestBlocking"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "libs/jquery.min.js",
        "content.js"
      ],
      "match_about_blank": true,
      "matches": [
        "http://*.youtube.com/*",
        "https://*.youtube.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/i16f.png",
      "32": "images/i32f.png",
      "48": "images/i48f.png",
      "128": "images/i128f.png"
    }
  },
  "icons": {
    "16": "images/i16f.png",
    "32": "images/i32f.png",
    "48": "images/i48f.png",
    "128": "images/i128f.png"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  }
}