YouTube Party

YouTube Party

Watch videos together with friends on youtube!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouTube Party",
  "description": "Watch videos together with friends on youtube!",
  "short_name": "YTParty",
  "manifest_version": 2,
  "version": "0.4",
  "icons": {
    "16": "icon/icon16.png",
    "48": "icon/icon164.png",
    "128": "icon/icon164.png",
    "164": "icon/icon164.png"
  },
  "permissions": [
    "activeTab",
    "declarativeContent",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*",
        "https://youtube.com/*"
      ],
      "js": [
        "js/socket.io.js",
        "js/Map.js",
        "js/youtubeparty.js"
      ],
      "css": [
        "css/youtubeparty.css"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": {
      "16": "icon/icon16.png",
      "164": "icon/icon164.png"
    },
    "default_title": "YouTube Party",
    "default_popup": "html/popup.html"
  },
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'"
}