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.
Was ist Freemap.sk for Geocaching?
Freemap.sk for Geocaching ist eine Chrome-Erweiterung, die von https://www.freemap.sk entwickelt wurde, und ihr Hauptmerkmal ist "Adds Freemap Outdoor and Ortofotomozaika SR map layers to www.geocaching.com and adds link to open cache on www.freemap.sk.".
Erweiterungsscreenshots
Freemap.sk for Geocaching-Erweiterungs-CRX-Datei herunterladen
Laden Sie Freemap.sk for Geocaching-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Freemap.sk for Geocaching |
ID | iapkfaedafblcbjnjdhklenbcnedoodl |
Offizielle URL | https://chromewebstore.google.com/detail/freemapsk-for-geocaching/iapkfaedafblcbjnjdhklenbcnedoodl |
Beschreibung | Adds Freemap Outdoor and Ortofotomozaika SR map layers to www.geocaching.com and adds link to open cache on www.freemap.sk. |
Dateigröße | 19.1 KB |
Installationsanzahl | 84 |
Aktuelle Version | 1.0 |
Letztes Update | 2021-09-05 |
Veröffentlichungsdatum | 2021-09-05 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | https://www.freemap.sk |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/FreemapSlovakia/fm4gc |
Hilfeseite URL | https://github.com/FreemapSlovakia/fm4gc/issues |
Unterstützte Sprachen | 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" } ] } |