Examine source code of YT Nonstop

Inspect and view changes in YT Nonstop 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
{
  "author": "JohnyP e.a.",
  "name": "YT Nonstop",
  "description": "No more 'Video paused. Continue watching?' confirmation box! And with two extra options: 1) disable autoplay; 2) loop playlist.",
  "homepage_url": "https://github.com/JohnyP36/YT-Nonstop",
  "icons": {
    "16": "images/ext16.png",
    "32": "images/ext32.png",
    "48": "images/ext48.png",
    "128": "images/ext128.png"
  },
  "action": {
    "default_icon": {
      "16": "images/ext16.png",
      "32": "images/ext32.png",
      "48": "images/ext48.png",
      "128": "images/ext128.png"
    },
    "default_popup": "popup1.3.2.html"
  },
  "options_ui": {
    "open_in_tab": true,
    "page": "popup1.3.2.html"
  },
  "incognito": "split",
  "manifest_version": 3,
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "js": [
        "js/script.js"
      ],
      "matches": [
        "*://www.youtube.com/*",
        "*://music.youtube.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "js/autoconfirm.js",
        "js/autoplay+loop.js"
      ],
      "matches": [
        "*://www.youtube.com/*",
        "*://music.youtube.com/*"
      ]
    }
  ],
  "permissions": [
    "declarativeContent",
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "*://www.youtube.com/*",
    "*://music.youtube.com/*"
  ],
  "version": "2.0.9",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}