Sync Video for Chrome

Sync Video for Chrome

Chrome extension that automatically creates a Sync Video room of the video you are currently watching.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Sync Video for Chrome",
  "description": "Chrome extension that automatically creates a Sync Video room of the video you are currently watching.",
  "version": "1.0",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "options_page": "options.html",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "tabs",
    "*://*/*",
    "storage"
  ]
}