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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } ] } |