YouTube Repeater

YouTube Repeater

Repeats YouTube video after it ends.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouTube Repeater",
  "description": "Repeats YouTube video after it ends.",
  "version": "0.0.4",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "eventPage.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "browser_action": {
    "default_icon": "icon.png"
  },
  "permissions": [
    "tabs",
    "notifications",
    "webNavigation"
  ]
}