YouTube Loop

YouTube Loop

Simple, easy, and light weight extension for looping a portion of a YouTube video.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "YouTube Loop",
  "description": "Simple, easy, and light weight extension for looping a portion of a YouTube video.",
  "version": "0.2",
  "icons": {
    "16": "16LoopIcon.png",
    "48": "16LoopIcon.png",
    "128": "16LoopIcon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/watch*"
      ],
      "css": [
        "thirdParty/jquery-ui.css",
        "loopControlStyle.css"
      ],
      "js": [
        "thirdParty/jquery-3.2.1.js",
        "thirdParty/jquery-ui.js",
        "content.js"
      ]
    }
  ],
  "minimum_chrome_version": "4.0"
}