Extenssr
'Extenssr - A browser extension for Geoguessr'
What is Extenssr?
Extenssr is a Chrome extension developed by Extenssr Developers, and its main feature is "'Extenssr - A browser extension for Geoguessr'".
Extension Screenshots
Download Extenssr Extension CRX File
Download Extenssr extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Extenssr |
ID | camiehngogdpflplmapknnjkeeofhfop |
Official URL | https://chromewebstore.google.com/detail/extenssr/camiehngogdpflplmapknnjkeeofhfop |
Description | 'Extenssr - A browser extension for Geoguessr' |
File Size | 34.91 MB |
Installation Count | 2,692 |
Current Version | 3.11.1 |
Last Updated | 2023-11-03 |
Publish Date | 2021-03-28 |
Rating | 4.33/5 Total 6 Ratings |
Developer | Extenssr Developers |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } |