Loop YouTube™

Loop YouTube™

With just one click, you can automatically replay videos with options for setting loop counts and loop duration.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "action": {
    "default_icon": {
      "32": "data/icons/icon-32.png",
      "38": "data/icons/icon-38.png",
      "128": "data/icons/icon-128.png",
      "512": "data/icons/icon-512.png"
    },
    "default_popup": "data/interface/index.html?popup",
    "default_title": "__MSG_extension_name__"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "css": [
        "content-style.css"
      ],
      "js": [
        "bundled-content-script.js"
      ],
      "matches": [
        "*://*.youtube.com/*",
        "*://youtube.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "content_security_policy": {
    "extension_pages": "default-src 'self'; script-src 'self'; img-src data: chrome-extension: http://*.gstatic.com https://*.gstatic.com https://*.facebook.com https://*.twitter.com; style-src 'self' 'unsafe-inline'; frame-src https://*.google.com https://*.facebook.com https://facebook.com http://*.facebook.com http://*.twitter.com https://*.twitter.com; object-src 'self'; connect-src https://*.twitter.com"
  },
  "default_locale": "en",
  "description": "__MSG_extension_description__",
  "homepage_url": "https://www.downloadhub.cloud/2023/01/loop.html",
  "icons": {
    "32": "data/icons/icon-32.png",
    "38": "data/icons/icon-38.png",
    "128": "data/icons/icon-128.png",
    "512": "data/icons/icon-512.png"
  },
  "manifest_version": 3,
  "name": "__MSG_extension_name__",
  "options_page": "data/options/options.html",
  "options_ui": {
    "open_in_tab": true,
    "page": "data/options/options.html"
  },
  "permissions": [
    "storage"
  ],
  "version": "0.1.2",
  "web_accessible_resources": [
    {
      "matches": [
        "*://*.youtube.com/*",
        "*://youtube.com/*"
      ],
      "resources": [
        "_locales/*",
        "data/options/options.html",
        "data/loop.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}