Patreon Player Repeat Functionality

Patreon Player Repeat Functionality

Add a repeat button to Patreon's player

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Patreon Player Repeat Functionality",
  "version": "0.3",
  "description": "Add a repeat button to Patreon's player",
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "https://www.patreon.com/*"
  ],
  "permissions": [],
  "icons": {
    "16": "logo.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.patreon.com/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "styles.css"
      ]
    }
  ]
}