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文件
下載Tools for Seterra speedrunners擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
官方網址 | 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" } } |