TarkovGenie

TarkovGenie

MapGenie POIs presets, Wiki cleaner. Planning to add custom POIs selection in future

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "TarkovGenie",
  "description": "MapGenie POIs presets, Wiki cleaner. Planning to add custom POIs selection in future",
  "version": "0.2",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://mapgenie.io/tarkov/maps/*"
      ],
      "js": [
        "maphook.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "https://mapgenie.io/tarkov/maps/*"
      ],
      "js": [
        "jquery-3.6.0.min.js",
        "content.js"
      ]
    },
    {
      "matches": [
        "https://escapefromtarkov.fandom.com/wiki/*"
      ],
      "js": [
        "jquery-3.6.0.min.js",
        "wikiclean.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html"
  }
}