Youtube Room

Youtube Room

Sync Youtube videos with friends and chat

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 Room",
  "description": "Sync Youtube videos with friends and chat",
  "version": "0.0.7",
  "page_action": {
    "default_popup": "popup.html",
    "default_title": "Youtube Room: Play & Chat"
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "options_page": "options.html",
  "icons": {
    "16": "img/YR16.png",
    "32": "img/YR32.png",
    "48": "img/YR48.png",
    "64": "img/YR64.png",
    "128": "img/YR128.png"
  },
  "permissions": [
    "activeTab",
    "declarativeContent",
    "https://*.youtube.com/*",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "css": [
        "css/chat.css"
      ],
      "js": [
        "content_script.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "web_accessible_resources": [
    "img/YR32.png",
    "img/become_a_patron_button.png"
  ]
}