Repeat Youtube videos in loop——Repeat Button

Make videos play on repeat by pressing single button. Works on Youtube, Vimeo and so on
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "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": [
        "*://*/*"
      ]
    }
  ]
}