Tools for Seterra speedrunners
Easily switch between different game parameters for Seterra.
Tools for Seterra speedrunners란 무엇입니까?
Tools for Seterra speedrunners은(는) Luka Lazarević에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easily switch between different game parameters for Seterra."입니다.
확장 프로그램 스크린샷
Tools for Seterra speedrunners 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Set parameters once and every game link will open with them already set. You can also change game area size and it will sync between tabs. All options from Seterra's tips and tricks page are supported: https://www.geoguessr.com/seterra/en/p/tips-and-tricks If you like extension consider donating <3 : https://www.paypal.me/lukalazarevic For any suggestion or bug report contact me at: [email protected]
확장 프로그램 기본 정보
이름 | Tools for Seterra speedrunners |
ID | olgfdbccpmfidgaeamgdbmbafnboffmm |
공식 URL | https://chromewebstore.google.com/detail/tools-for-seterra-speedru/olgfdbccpmfidgaeamgdbmbafnboffmm |
설명 | Easily switch between different game parameters for Seterra. |
파일 크기 | 91.24 KB |
설치 횟수 | 1,026 |
현재 버전 | 1.0.5 |
최근 업데이트 | 2023-05-02 |
출시 날짜 | 2022-02-25 |
평점 | 4.67/5 총 3 개의 평점 |
개발자 | Luka Lazarević |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Tools for Seterra speedrunners", "short_name": "Seterra Tools", "version": "1.0.5", "description": "Easily switch between different game parameters for Seterra.", "author": "Luka Lazarevi\u0107", "permissions": [ "storage", "tabs" ], "host_permissions": [ "https:\/\/www.geoguessr.com\/seterra\/*\/vg*\/*", "https:\/\/www.geoguessr.com\/seterra\/*\/fl*\/*", "https:\/\/geoguessr.com\/seterra\/*\/vg*\/*", "https:\/\/geoguessr.com\/seterra\/*\/fl*\/*", "https:\/\/geoguessr.com\/vg*\/*", "https:\/\/geoguessr.com\/fl*\/*" ], "icons": { "16": "icon\/icon16.png", "32": "icon\/icon32.png", "48": "icon\/icon48.png", "64": "icon\/icon64.png", "80": "icon\/icon80.png", "96": "icon\/icon96.png", "112": "icon\/icon112.png", "128": "icon\/icon128.png", "256": "icon\/icon256.png" }, "action": { "default_popup": "popup\/index.html", "default_title": "Tools for Seterra speedrunners" }, "content_scripts": [ { "matches": [ "https:\/\/www.geoguessr.com\/seterra\/*\/vg*\/*", "https:\/\/www.geoguessr.com\/seterra\/*\/fl*\/*", "https:\/\/geoguessr.com\/seterra\/*\/vg*\/*", "https:\/\/geoguessr.com\/seterra\/*\/fl*\/*", "https:\/\/geoguessr.com\/vg*\/*", "https:\/\/geoguessr.com\/fl*\/*" ], "js": [ "content_scripts\/index.js" ] } ], "background": { "service_worker": "background\/index.js" } } |