Annotated Geoguessr

Annotated Geoguessr

Augment user-created geoguessr maps with custom annotations by location.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Annotated Geoguessr",
  "description": "Augment user-created geoguessr maps with custom annotations by location.",
  "version": "0.1.2",
  "action": {
    "default_icon": "extension-logo.d806e780.png",
    "default_title": "Annotated Geoguessr",
    "default_popup": "popup.3b9826bb.html"
  },
  "permissions": [
    "webRequest",
    "identity",
    "clipboard-write",
    "clipboard-read"
  ],
  "host_permissions": [
    "*://*.geoguessr.com/*"
  ],
  "background": {
    "service_worker": "background.34ef17ed.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.geoguessr.com/*"
      ],
      "js": [
        "content-main.8738f9db.js"
      ],
      "run_at": "document_start",
      "css": [
        "content-main.2eaf77ca.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content-main.8738f9db.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "matches": [
        "https://www.geoguessr.com/*"
      ],
      "resources": [
        "injected-main.038e1279.js"
      ]
    }
  ],
  "oauth2": {
    "client_id": "39901797294-8urvpsp9p5lrostl79j6c1onu2cd4d3n.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  }
}