IQAlert

IQAlert

Sounds and notifications for Idle Quest RPG

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "IQAlert",
  "description": "Sounds and notifications for Idle Quest RPG",
  "version": "3.1.2",
  "manifest_version": 3,
  "name": "IQAlert",
  "options_page": "options.html",
  "action": {
    "default_popup": "options.html"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "auto.mp3",
        "boss.mp3",
        "event.mp3",
        "beep.mp3",
        "icon128.png",
        "wsproxy.min.js"
      ],
      "matches": [
        "*://*.iqrpg.com/*"
      ]
    }
  ],
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "*://*.iqrpg.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.iqrpg.com/*"
      ],
      "exclude_matches": [
        "*://test.iqrpg.com/*"
      ],
      "js": [
        "iqalert.min.js"
      ],
      "run_at": "document_start"
    }
  ]
}