StingerNET Tool

StingerNET Tool

Allows posting of data from utopia to StingerNET.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "StingerNET Tool",
  "description": "Allows posting of data from utopia to StingerNET.",
  "version": "2.4.2",
  "options_page": "options.html",
  "permissions": [
    "activeTab",
    "notifications",
    "contextMenus",
    "webNavigation",
    "webRequest",
    "storage"
  ],
  "host_permissions": [
    "*://stingernet.org/*",
    "*://stingernet.ddns.net/*"
  ],
  "icons": {
    "16": "icon32.png",
    "32": "icon32.png",
    "48": "icon32.png",
    "128": "icon32.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "*://utopia-game.com/*"
      ],
      "js": [
        "jquery.min.js",
        "gzip.min.js",
        "content_script.js"
      ],
      "run_at": "document_end"
    }
  ]
}