Youtube repeat

Youtube repeat

Let youtube repeat replay song in one click! Loop youtube video, listen song on repeat, and enjoy infinite loop for hours

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_APPNAME__",
  "description": "__MSG_APPDESC__",
  "author": "Million Extension",
  "manifest_version": 3,
  "version": "1.0.1",
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "js": [
        "content_script.js"
      ],
      "css": [
        "loop.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "youtube.js"
      ],
      "matches": [
        "*://*.youtube.com/*",
        "*://youtube.com/*"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "default_locale": "en",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png",
    "300": "icons/icon300.png"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://*/*"
  ]
}