GeoGuessr Radio
Go on a roadtrip in GeoGuessr and listen to local radio stations while playing.
什麼是GeoGuessr Radio?
GeoGuessr Radio是由Redfox開發的Chrome擴展程式,該擴展的主要功能是“Go on a roadtrip in GeoGuessr and listen to local radio stations while playing.”。
擴展截圖
下載GeoGuessr Radio擴展crx文件
下載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 |
官方網址 | 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" } ] } |