Examine source code of YouTube Auto Pause/Play

Inspect and view changes in YouTube Auto Pause/Play source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "YouTube Auto Pause/Play",
  "version": "1.0",
  "permissions": [
    "tabs",
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "description": "Automatically pauses and plays YouTube videos across multiple tabs.",
  "browser_specific_settings": {
    "gecko": {
      "id": "{5cc1a451-c045-4a71-8818-88dd83f8c745}"
    }
  }
}