Rollyt — Realtime Youtube Party Playlist

Rollyt — Realtime Youtube Party Playlist

Ultimate party playlist queue for Youtube. Remotely collaborate with friends, in realtime and on the fly.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Rollyt — Realtime Youtube Party Playlist",
  "description": "Ultimate party playlist queue for Youtube. Remotely collaborate with friends, in realtime and on the fly.",
  "version": "2.2.2",
  "icons": {
    "16": "res/icons/logo-16.png",
    "24": "res/icons/logo-24.png",
    "48": "res/icons/logo-48.png",
    "128": "res/icons/logo-128.png"
  },
  "action": {
    "default_icon": "res/icons/logo-16-off.png",
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "app/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*",
        "*://*.rollyt.com/placeholder/*"
      ],
      "js": [
        "res/libs/livequrl-client.min.js",
        "app/content.js"
      ],
      "css": [
        "app/content.css"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://*.youtube.com/*",
      "*://*.rollyt.com/*"
    ]
  },
  "permissions": [
    "tabs",
    "storage"
  ]
}