ListenOnRepeat: Youtube to LOR

ListenOnRepeat: Youtube to LOR

The fast and easy way to transfer your favorite YouTube songs and playlists to your ListenOnRepeat account.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ListenOnRepeat: Youtube to LOR",
  "description": "The fast and easy way to transfer your favorite YouTube songs and playlists to your ListenOnRepeat account.",
  "version": "0.0.1",
  "manifest_version": 3,
  "author": "Listen On Repeat",
  "icons": {
    "128": "/images/lor-square.png"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "/images/lor-square.png"
  },
  "host_permissions": [
    "https://www.youtube.com/*",
    "*://*.listenonrepeat.com/*"
  ],
  "permissions": [
    "tabs",
    "scripting"
  ],
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "js": [
        "js/popup.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [],
      "matches": [
        "https://*.youtube.com/*"
      ]
    }
  ]
}