Simple Dredark Tools (drednot.io)

Simple Dredark Tools (drednot.io)

An extension for some tools in the Deep Space Airships (drednot.io) game.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Simple Dredark Tools (drednot.io)",
  "description": "An extension for some tools in the Deep Space Airships (drednot.io) game.",
  "version": "1.7.3",
  "author": "Blueyescat <[email protected]>",
  "permissions": [
    "storage"
  ],
  "options_page": "options.html",
  "web_accessible_resources": [
    {
      "matches": [
        "*://*.drednot.io/*"
      ],
      "resources": [
        "styles/content.css",
        "sfx/beep.mp3",
        "scripts/wshook.js"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.drednot.io/*"
      ],
      "js": [
        "lib/jquery/jquery-3.6.0.min.js",
        "lib/msgpackjs/msgpack.min.js",
        "scripts/content.js"
      ],
      "css": [
        "styles/content.css"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "*://*.drednot.io/*"
      ],
      "js": [
        "scripts/document_start.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_icon": {
      "32": "images/dredark-icon.png"
    },
    "default_title": "Click to open options pop-up of Simple Dredark Tools",
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/dredark-icon.png",
    "32": "images/dredark-icon.png",
    "48": "images/dredark-icon.png",
    "128": "images/dredark-icon.png"
  },
  "manifest_version": 3
}