Tools for Seterra speedrunners

Tools for Seterra speedrunners

Easily switch between different game parameters for Seterra.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Tools for Seterra speedrunners",
  "short_name": "Seterra Tools",
  "version": "1.0.5",
  "description": "Easily switch between different game parameters for Seterra.",
  "author": "Luka Lazarević",
  "permissions": [
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "https://www.geoguessr.com/seterra/*/vg*/*",
    "https://www.geoguessr.com/seterra/*/fl*/*",
    "https://geoguessr.com/seterra/*/vg*/*",
    "https://geoguessr.com/seterra/*/fl*/*",
    "https://geoguessr.com/vg*/*",
    "https://geoguessr.com/fl*/*"
  ],
  "icons": {
    "16": "icon/icon16.png",
    "32": "icon/icon32.png",
    "48": "icon/icon48.png",
    "64": "icon/icon64.png",
    "80": "icon/icon80.png",
    "96": "icon/icon96.png",
    "112": "icon/icon112.png",
    "128": "icon/icon128.png",
    "256": "icon/icon256.png"
  },
  "action": {
    "default_popup": "popup/index.html",
    "default_title": "Tools for Seterra speedrunners"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.geoguessr.com/seterra/*/vg*/*",
        "https://www.geoguessr.com/seterra/*/fl*/*",
        "https://geoguessr.com/seterra/*/vg*/*",
        "https://geoguessr.com/seterra/*/fl*/*",
        "https://geoguessr.com/vg*/*",
        "https://geoguessr.com/fl*/*"
      ],
      "js": [
        "content_scripts/index.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background/index.js"
  }
}