Examine source code of EarthMC Dynmap+

Inspect and view changes in EarthMC Dynmap+ source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "EarthMC Dynmap+",
  "version": "1.16",
  "author": "3meraldK",
  "description": "Extension to enrich the EarthMC map experience",
  "icons": {
    "48": "icon.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "main.js"
      ],
      "matches": [
        "https://map.earthmc.net/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://map.earthmc.net/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ]
}