GeoGuessr Radio

GeoGuessr Radio

Go on a roadtrip in GeoGuessr and listen to local radio stations while playing.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "GeoGuessr Radio",
  "version": "0.6.1",
  "description": "Go on a roadtrip in GeoGuessr and listen to local radio stations while playing.",
  "permissions": [
    "storage",
    "webRequest",
    "https://www.geoguessr.com/api/v3/*",
    "https://*.api.radio-browser.info/json/*"
  ],
  "icons": {
    "32": "public/icon32.png",
    "48": "public/icon48.png",
    "64": "public/icon64.png",
    "128": "public/icon128.png"
  },
  "web_accessible_resources": [
    "public/*",
    "assets/*"
  ],
  "commands": {
    "toggle-radio": {
      "description": "Toggle the radio"
    },
    "next-station": {
      "description": "Skip station"
    },
    "increase-volume": {
      "suggested_key": {
        "default": "Ctrl+Up"
      },
      "description": "Increase volume"
    },
    "decrease-volume": {
      "suggested_key": {
        "default": "Ctrl+Down"
      },
      "description": "Lower volume"
    }
  },
  "background": {
    "scripts": [
      "background/index.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup/index-IU34U2UG.html",
    "default_icon": "public/icon32.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.geoguessr.com/*"
      ],
      "js": [
        "content/index.js"
      ],
      "css": [
        "content/index.css",
        "public/radiofont.css"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{e1694422-2591-496d-a703-74a658dd10d7}"
    }
  }
}