YTLooper

YTLooper

YTLooper is a simple add-on that gives you the ability to seamlessly loop YouTube videos or a portion of the videos. Features: - Portion/Segment looping - Easily set start and end times - Beautifully integrates into the default YouTube player.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "YTLooper",
  "version": "1.2.3",
  "description": "Allows you to loop YouTube videos with one click.",
  "icons": {
    "48": "icons/48Black.png",
    "96": "icons/96Black.png"
  },
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "*://*.youtube.com/*"
      ],
      "css": [
        "looper.css"
      ],
      "js": [
        "jquery-3.2.1.slim.min.js",
        "looper.js"
      ]
    }
  ],
  "permissions": []
}