GeoGuessr Radio
Go on a roadtrip in GeoGuessr and listen to local radio stations while playing.
¿Qué es GeoGuessr Radio?
GeoGuessr Radio es una extensión de Chrome desarrollada por Redfox, y su función principal es "Go on a roadtrip in GeoGuessr and listen to local radio stations while playing.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión GeoGuessr Radio
Descarga archivos de extensión GeoGuessr Radio en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | GeoGuessr Radio |
ID | bgajilfchnbbdpgmdmcocjocagpgmpdn |
URL Oficial | https://chromewebstore.google.com/detail/geoguessr-radio/bgajilfchnbbdpgmdmcocjocagpgmpdn |
Descripción | Go on a roadtrip in GeoGuessr and listen to local radio stations while playing. |
Tamaño del Archivo | 182 KB |
Cantidad de Instalaciones | 954 |
Versión Actual | 0.6.0 |
Última Actualización | 2024-01-27 |
Fecha de Publicación | 2022-09-21 |
Calificación | 5.00/5 Total de 15 Calificaciones |
Desarrollador | Redfox |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" } ] } |