Extenssr
'Extenssr - A browser extension for Geoguessr'
Co je Extenssr?
Extenssr je rozšíření Chrome vyvinuté Extenssr Developers, a jeho hlavní funkcí je „'Extenssr - A browser extension for Geoguessr'“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Extenssr
Stáhněte si soubory rozšíření Extenssr ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Extenssr |
ID | camiehngogdpflplmapknnjkeeofhfop |
Oficiální URL | https://chromewebstore.google.com/detail/extenssr/camiehngogdpflplmapknnjkeeofhfop |
Popis | 'Extenssr - A browser extension for Geoguessr' |
Velikost souboru | 34.91 MB |
Počet instalací | 2,692 |
Aktuální Verze | 3.11.1 |
Poslední Aktualizace | 2023-11-03 |
Datum Vydání | 2021-03-28 |
Hodnocení | 4.33/5 Celkem 6 Hodnocení |
Vývojář | Extenssr Developers |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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 } |