YouTube Sleep Timer

YouTube Sleep Timer

Goodbye to manual pausing thanks to our YouTube sleep timer! Enjoy your favorite videos carefree with our sleep timer YouTube.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "1.0.9",
  "default_locale": "en",
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "content_security_policy": {
    "default-src": "self"
  },
  "permissions": [
    "alarms",
    "scripting",
    "tabs",
    "storage",
    "activeTab"
  ],
  "externally_connectable": {
    "matches": [
      "*://*.youtube.com/*"
    ]
  },
  "host_permissions": [
    "https://*.youtube.com/"
  ],
  "background": {
    "service_worker": "scripts/background/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "scripts/player/player.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "popup.html",
        "scripts/extension/popup.js",
        "scripts/jquery-3.7.1.min.js"
      ],
      "matches": [
        "*://*.youtube.com/*"
      ]
    }
  ],
  "action": {
    "default_title": "YouTube Sleep Timer",
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/clock_16.png",
      "32": "images/clock_32.png",
      "48": "images/clock_48.png",
      "128": "images/clock_128.png"
    }
  },
  "icons": {
    "16": "images/clock_16.png",
    "32": "images/clock_32.png",
    "48": "images/clock_48.png",
    "128": "images/clock_128.png"
  },
  "manifest_version": 3
}