Repeat Button YouTube™

Repeat Button YouTube™

Add a repeat/loop button to loop every YouTube videos you watch.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Repeat Button YouTube™",
  "short_name": "YouTube™ Repeat Button",
  "version": "1.1.0",
  "description": "Add a repeat/loop button to loop every YouTube videos you watch.",
  "icons": {
    "128": "icon_128.png"
  },
  "page_action": {
    "default_icon": "icon.png",
    "default_title": "YouTube Repeat Button"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*",
        "http://www.youtube.com/*"
      ],
      "js": [
        "injector.js"
      ]
    }
  ],
  "permissions": [
    "tabs"
  ],
  "author": "Avreghly Barra <[email protected]>",
  "homepage_url": "https://shrotavre.com/youtube-loop"
}