Freemap.sk for Geocaching
Adds Freemap Outdoor and Ortofotomozaika SR map layers to www.geocaching.com and adds link to open cache on www.freemap.sk.
What is Freemap.sk for Geocaching?
Freemap.sk for Geocaching is a Chrome extension developed by https://www.freemap.sk, and its main feature is "Adds Freemap Outdoor and Ortofotomozaika SR map layers to www.geocaching.com and adds link to open cache on www.freemap.sk.".
Extension Screenshots
Download Freemap.sk for Geocaching Extension CRX File
Download Freemap.sk for Geocaching 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
Maps on www.geocaching.com don't provide much details for outdoor activities. This extension adds Freemap Outdoor and Ortofotomozaika SR map layers to following maps: * https://www.geocaching.com/map/ * https://www.geocaching.com/play/map * preview map on individial caches (eg. https://www.geocaching.com/geocache/GC9DK35) It also adds link to open www.freemap.sk with highlighted position of the cache.
Extension Basic Information
Name | Freemap.sk for Geocaching |
ID | iapkfaedafblcbjnjdhklenbcnedoodl |
Official URL | https://chromewebstore.google.com/detail/freemapsk-for-geocaching/iapkfaedafblcbjnjdhklenbcnedoodl |
Description | Adds Freemap Outdoor and Ortofotomozaika SR map layers to www.geocaching.com and adds link to open cache on www.freemap.sk. |
File Size | 19.1 KB |
Installation Count | 84 |
Current Version | 1.0 |
Last Updated | 2021-09-05 |
Publish Date | 2021-09-05 |
Rating | 5.00/5 Total 1 Ratings |
Developer | https://www.freemap.sk |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/FreemapSlovakia/fm4gc |
Help Page URL | https://github.com/FreemapSlovakia/fm4gc/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Freemap.sk for Geocaching", "short_name": "fm4gc", "version": "1.0", "author": "Martin \u017ddila (Freemap Slovakia)", "description": "Adds Freemap Outdoor and Ortofotomozaika SR map layers to www.geocaching.com and adds link to open cache on www.freemap.sk.", "icons": { "48": "icons\/icon-48.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.geocaching.com\/map\/" ], "js": [ "common.js", "map.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/www.geocaching.com\/play\/*" ], "js": [ "common.js", "play_map.js" ], "css": [ "play_map.css" ], "run_at": "document_end" }, { "matches": [ "https:\/\/www.geocaching.com\/geocache\/*" ], "js": [ "common.js", "geocache.js" ], "run_at": "document_end" } ] } |