Promote YouTube videos

Promote YouTube videos

Promote videos in a selected playlist on YouTube. Together we can fight bots

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Promote YouTube videos",
  "description": "Promote videos in a selected playlist on YouTube. Together we can fight bots",
  "version": "1.04",
  "manifest_version": 3,
  "icons": {
    "128": "/images/youtube128.png"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "css": [
        "main.css"
      ],
      "js": [
        "script.js"
      ]
    }
  ],
  "action": {
    "default_title": "Start playing",
    "default_popup": "popup.html"
  }
}