Livestream extension

Livestream extension

This extension shows removed comments in Youtube livestreams

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Livestream extension",
  "description": "This extension shows removed comments in Youtube livestreams",
  "version": "1.2",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "jquery-3.1.1.min.js",
        "youtubescript.js"
      ]
    }
  ]
}