Extenssr
'Extenssr - A browser extension for Geoguessr'
Extenssr란 무엇입니까?
Extenssr은(는) Extenssr Developers에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "'Extenssr - A browser extension for Geoguessr'"입니다.
확장 프로그램 스크린샷
Extenssr 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is an extension for the browser based geography game Geoguessr. Latest change log: https://gitlab.com/nonreviad/extenssr/-/blob/main/Changelog.md This is a browser extension for the browser based map game Geoguessr. Current functionality: - show exact locations for completed Battle Royale rounds - filter effects on the map - bookmark locations as you find them on the map - cursed game modes Complete features list: https://gitlab.com/nonreviad/extenssr/-/blob/main/Readme.md
확장 프로그램 기본 정보
이름 | Extenssr |
ID | camiehngogdpflplmapknnjkeeofhfop |
공식 URL | https://chromewebstore.google.com/detail/extenssr/camiehngogdpflplmapknnjkeeofhfop |
설명 | 'Extenssr - A browser extension for Geoguessr' |
파일 크기 | 34.91 MB |
설치 횟수 | 2,692 |
현재 버전 | 3.11.1 |
최근 업데이트 | 2023-11-03 |
출시 날짜 | 2021-03-28 |
평점 | 4.33/5 총 6 개의 평점 |
개발자 | Extenssr Developers |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Extenssr", "version": "3.11.1", "description": "'Extenssr - A browser extension for Geoguessr'", "icons": { "48": "icons\/extenssr_48.png", "128": "icons\/extenssr_128.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.geoguessr.com\/*" ], "run_at": "document_start", "js": [ "content.bundle.js" ], "css": [ "css\/styles.css", "css\/xterm.css" ] } ], "permissions": [ "storage", "unlimitedStorage" ], "background": { "service_worker": "worker.bundle.js" }, "action": { "default_popup": "popup.html" }, "web_accessible_resources": [ { "resources": [ "icons\/*.png", "icons\/*.svg", "inject_main.bundle.js", "ai_worker.bundle.js", "geojson_data\/*.geojson", "models\/*", "wasm\/*" ], "matches": [ "https:\/\/www.geoguessr.com\/*" ] } ], "manifest_version": 3 } |