GeoGuessr Radio

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

Was ist GeoGuessr Radio?

GeoGuessr Radio ist eine Chrome-Erweiterung, die von Redfox entwickelt wurde, und ihr Hauptmerkmal ist "Go on a roadtrip in GeoGuessr and listen to local radio stations while playing.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

GeoGuessr Radio-Erweiterungs-CRX-Datei herunterladen

Laden Sie GeoGuessr Radio-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Adds a radio to games on the geoguessr.com website. Geoguessr Radio automatically switches to local radio stations while you are playing.
The radio will appear in any of the Classic Maps.

Radio stations are filtered by country and will switch automatically when you make a guess. In US States Streak games, the radio filters stations by US state.

Multiplayer games and Challenges are not supported.

This extension is not official and is intended to add to the game's experience only. Please note that I cannot guarantee future support for this extension, but I will do my best.                    

Grundlegende Informationen zur Erweiterung

Name GeoGuessr Radio GeoGuessr Radio
ID bgajilfchnbbdpgmdmcocjocagpgmpdn
Offizielle URL https://chromewebstore.google.com/detail/geoguessr-radio/bgajilfchnbbdpgmdmcocjocagpgmpdn
Beschreibung Go on a roadtrip in GeoGuessr and listen to local radio stations while playing.
Dateigröße 182 KB
Installationsanzahl 954
Aktuelle Version 0.6.0
Letztes Update 2024-01-27
Veröffentlichungsdatum 2022-09-21
Bewertung 5.00/5 Insgesamt 15 Bewertungen
Entwickler Redfox
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GeoGuessr Radio",
    "version": "0.6.0",
    "description": "Go on a roadtrip in GeoGuessr and listen to local radio stations while playing.",
    "permissions": [
        "storage",
        "webRequest"
    ],
    "host_permissions": [
        "https:\/\/www.geoguessr.com\/api\/v3\/*"
    ],
    "icons": {
        "32": "public\/icon32.png",
        "48": "public\/icon48.png",
        "64": "public\/icon64.png",
        "128": "public\/icon128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "public\/*",
                "assets\/*"
            ],
            "matches": [
                "https:\/\/www.geoguessr.com\/*"
            ]
        }
    ],
    "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": {
        "service_worker": "background\/index.js",
        "type": "module"
    },
    "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"
        }
    ]
}