YouTube Party

YouTube Party

YouTube Party lets you sync your YouTube videos together with friends over the internet!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "YouTube Party",
  "version": "1.2",
  "description": "YouTube Party lets you sync your YouTube videos together with friends over the internet!",
  "icons": {
    "128": "icon128.png"
  },
  "browser_action": {
    "default_popup": "html/popup.html"
  },
  "permissions": [
    "https://www.youtube.com/*",
    "http://www.youtube.com/*",
    "notifications"
  ],
  "web_accessible_resources": [
    "jquery.js",
    "js/playerController.js",
    "semantic/semantic.chrome.css",
    "html/chat2.html",
    "html/popup.html",
    "semantic/themes/default/assets/fonts/*",
    "semantic/themes/default/assets/fonts/*",
    "semantic/themes/default/assets/images/*.png"
  ],
  "content_scripts": [
    {
      "js": [
        "jquery.js",
        "js/playerController.js",
        "semantic/semantic.js",
        "js/chat/chat.js"
      ],
      "css": [
        "semantic/semantic.chrome.css"
      ],
      "matches": [
        "https://www.youtube.com/*"
      ]
    }
  ],
  "background": {
    "scripts": [
      "jquery.js",
      "js/peerjs.min.js",
      "js/bg_general_functions.js",
      "js/bg_self.js",
      "js/bg_join.js",
      "js/bg_host.js",
      "js/bg_chat.js"
    ],
    "persistent": true
  }
}