Kick Vodder

Kick Vodder

Making the Kick VOD-viewer experience better!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Kick Vodder",
  "version": "0.2.1",
  "description": "Making the Kick VOD-viewer experience better!",
  "action": {
    "default_popup": "popup/popup.html",
    "default_icon": "images/kick-vodder.png"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/content.js"
      ],
      "matches": [
        "*://kick.com/*"
      ]
    }
  ],
  "background": {
    "service_worker": "service-worker.js",
    "type": "module"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*.ninjasploit.com/*",
    "*://*.kick.com/*"
  ]
}