Auto Pause YouTube - Resume/Pause Video

Automatically pauses and resumes YouTube, Facebook and Hotstar videos in background.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://www.youtube.com/*",
        "https://www.hotstar.com/*",
        "https://www.facebook.com/*",
        "<all_urls>"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "description": "Automatically pauses and resumes YouTube, Facebook and Hotstar videos in background.",
  "manifest_version": 3,
  "name": "Auto Pause YouTube - Resume/Pause Video",
  "permissions": [
    "activeTab",
    "scripting",
    "storage",
    "declarativeNetRequest"
  ],
  "version": "1.0.0",
  "icons": {
    "16": "icons/icon16.png",
    "24": "icons/icon24.png",
    "32": "icons/icon32.png",
    "64": "icons/icon64.png"
  },
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}