YouTube Givaways

YouTube Givaways

YouTube Random Comment Picker - Choose Winners with Ease

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "short_name": "YouTube Giveways",
  "version": "1.0.0",
  "description": "__MSG_appDesc__",
  "default_locale": "en",
  "icons": {
    "16": "public/icons/icon-16.png",
    "48": "public/icons/icon-48.png",
    "96": "public/icons/icon-96.png",
    "128": "public/icons/icon-128.png"
  },
  "content_security_policy": {
    "extensions_pages": "script-src 'self'; object-src 'self'"
  },
  "permissions": [],
  "host_permissions": [
    "*://*.youtube.com/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://localhost:9000/*",
        "*://*.youtube.com/*"
      ],
      "js": [
        "content.js",
        "front-vendors.js",
        "contentApp.js",
        "contentButton.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "monkeyPatch.js"
      ],
      "matches": [
        "*://www.youtube.com/*"
      ]
    }
  ]
}