Show Geocache On Google Maps
Quickly see a geocache's location on a Google map.
What is Show Geocache On Google Maps?
Show Geocache On Google Maps is a Chrome extension developed by Team SW&L, and its main feature is "Quickly see a geocache's location on a Google map.".
Extension Screenshots
Download Show Geocache On Google Maps Extension CRX File
Download Show Geocache On Google Maps 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
Click on our icon when looking at a geocache page and its location will be shown using a Google map in a new tab. Makes it easy to use features such as street view, measure distances and more!
Extension Basic Information
Name | Show Geocache On Google Maps |
ID | inafncgdbdkabeoameibhblnnenpihhn |
Official URL | https://chromewebstore.google.com/detail/show-geocache-on-google-m/inafncgdbdkabeoameibhblnnenpihhn |
Description | Quickly see a geocache's location on a Google map. |
File Size | 65.13 KB |
Installation Count | 400 |
Current Version | 1.3.2 |
Last Updated | 2020-01-09 |
Publish Date | 2020-01-09 |
Developer | Team SW&L |
Payment Type | free |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Show Geocache On Google Maps", "short_name": "Cache Mapper", "version": "1.3.2", "description": "Quickly see a geocache's location on a Google map.", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.geocaching.com\/*" ], "js": [ "jquery-2.1.3.min.js", "content.js" ] } ], "browser_action": { "default_icon": "icon.png" }, "permissions": [ "https:\/\/www.geocaching.com\/*" ] } |