Tab Play

Tab Play

Pause/Play, scrub or mute videos playing on another tab or another window in current window!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Tab Play",
  "description": "Pause/Play, scrub or mute videos playing on another tab or another window in current window!",
  "version": "2.0",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html",
    "default_title": "Tab Control"
  },
  "background": {
    "scripts": [
      "eventPage.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "activeTab",
    "tabs",
    "webNavigation",
    "storage",
    "https://ajax.googleapis.com/"
  ]
}