Free Game - Dedalium by Loycom Games

Free Game - Dedalium by Loycom Games

Do you like games? Play and turn any website into a fun browser free rpg game

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "short_name": "Dedalium",
  "description": "__MSG_appDesc__",
  "version": "0.4.10",
  "manifest_version": 3,
  "default_locale": "en",
  "permissions": [
    "notifications",
    "storage",
    "cookies",
    "offscreen"
  ],
  "host_permissions": [
    "https://dedalium.com/",
    "https://api.dedalium.com/",
    "https://cdn.dedalium.com/"
  ],
  "icons": {
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "action": {
    "default_title": "Dedalium",
    "default_popup": "popup/popup.html"
  },
  "background": {
    "service_worker": "service-worker.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*",
        "assets/images/*",
        "draco_compression/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "game/main.js"
      ],
      "css": [
        "game/main.css"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ],
  "options_ui": {
    "page": "options/options.html"
  }
}