Repeat Youtube videos in loop——Repeat Button

Repeat Youtube videos in loop——Repeat Button

Make videos play on repeat by pressing single button. Works on Youtube, Vimeo and so on

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "service_worker": "js/background.js"
  },
  "action": {
    "default_icon": {
      "128": "icons/icon-128.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "style.css"
      ],
      "js": [
        "js/content-script.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_end"
    }
  ],
  "default_locale": "en",
  "description": "__MSG_app_desc__",
  "icons": {
    "128": "icons/icon-128.png"
  },
  "manifest_version": 3,
  "name": "__MSG_app_name__",
  "permissions": [
    "tabs",
    "scripting",
    "alarms"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "version": "1.0.1",
  "web_accessible_resources": [
    {
      "resources": [
        "dis.png",
        "en.png",
        "no-autoplay.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}