YouTube Uninterrupted

YouTube Uninterrupted

Ensures that YouTube runs without any interruptions

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "YouTube Uninterrupted",
  "description": "Ensures that YouTube runs without any interruptions",
  "version": "2.3.3",
  "action": {
    "default_icon": {
      "32": "assets/icon.png"
    },
    "default_title": "YouTube uninterrupted",
    "default_popup": "html/main.html"
  },
  "icons": {
    "128": "assets/icon.png"
  },
  "background": {
    "service_worker": "js/serviceWorker.js"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "css": [
        "css/replayButton.css"
      ],
      "js": [
        "js/dbManagement.js",
        "js/utensils.js",
        "js/errorManagement.js",
        "js/skipAds.js",
        "js/speedupAutoplay.js",
        "js/replayButton.js",
        "js/preventAutostop.js",
        "js/cleanupLayout.js",
        "js/mainCS.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*.png",
        "js/*.js",
        "css/*.css"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ]
}