YT Remote

YT Remote

A chrome extension to control your YouTube tabs / playback from any website / tabs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YT Remote",
  "version": "1.0.6",
  "short_name": "YT Remote",
  "description": "A chrome extension to control your YouTube tabs / playback from any website / tabs.",
  "browser_action": {
    "default_popup": "index.html"
  },
  "permissions": [
    "storage",
    "https://www.youtube.com/*"
  ],
  "background": {
    "scripts": [
      "ytBackgroundScript.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "run_at": "document_end",
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "icons": {
    "16": "icons-main/logo_16_c.png",
    "48": "icons-main/logo_48_c.png",
    "128": "icons-main/logo_128_c.png"
  },
  "manifest_version": 2
}