GeoGuessr Radio
Go on a roadtrip in GeoGuessr and listen to local radio stations while playing.
Τι είναι το GeoGuessr Radio;
Το GeoGuessr Radio είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Redfox, και η κύρια λειτουργία του είναι "Go on a roadtrip in GeoGuessr and listen to local radio stations while playing.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης GeoGuessr Radio
Λήψη αρχείων επέκτασης GeoGuessr Radio σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | GeoGuessr Radio |
ID | bgajilfchnbbdpgmdmcocjocagpgmpdn |
Επίσημο URL | https://chromewebstore.google.com/detail/geoguessr-radio/bgajilfchnbbdpgmdmcocjocagpgmpdn |
Περιγραφή | Go on a roadtrip in GeoGuessr and listen to local radio stations while playing. |
Μέγεθος Αρχείου | 182 KB |
Αριθμός Εγκαταστάσεων | 954 |
Τρέχουσα Έκδοση | 0.6.0 |
Τελευταία Ενημέρωση | 2024-01-27 |
Ημερομηνία Δημοσίευσης | 2022-09-21 |
Αξιολόγηση | 5.00/5 Συνολικά 15 Αξιολογήσεις |
Προγραμματιστής | Redfox |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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" } ] } |