DrIgo

DrIgo

Notificará cuando DrIgo esté en vivo.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "background": {
    "service_worker": "twitch.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "socket.io.js",
        "script.js"
      ]
    }
  ],
  "action": {},
  "description": "Notificará cuando DrIgo esté en vivo.",
  "icons": {
    "16": "assets/16.png",
    "32": "assets/32.png",
    "48": "assets/96.png"
  },
  "manifest_version": 3,
  "name": "DrIgo",
  "web_accessible_resources": [
    {
      "resources": [
        "socket.io.js",
        "audio.html",
        "audio.js",
        "sound.mp3"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "notifications",
    "activeTab",
    "storage",
    "tabs",
    "offscreen"
  ],
  "version": "3.0"
}