Simple Youtube Repeater

Simple Youtube Repeater

Simply click the repeat button to make the Youtube video automatically repeat.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Simple Youtube Repeater",
  "description": "Simply click the repeat button to make the Youtube video automatically repeat.",
  "version": "3.0",
  "author": "Kenneth",
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/watch?*"
      ],
      "js": [
        "cs.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "images/*.png"
  ],
  "icons": {
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  }
}