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.
Cos'è Freemap.sk for Geocaching?
Freemap.sk for Geocaching è un'estensione di Chrome sviluppata da https://www.freemap.sk, e la sua funzione principale è "Adds Freemap Outdoor and Ortofotomozaika SR map layers to www.geocaching.com and adds link to open cache on www.freemap.sk.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Freemap.sk for Geocaching
Scarica i file di estensione Freemap.sk for Geocaching in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Freemap.sk for Geocaching |
ID | iapkfaedafblcbjnjdhklenbcnedoodl |
URL Ufficiale | https://chromewebstore.google.com/detail/freemapsk-for-geocaching/iapkfaedafblcbjnjdhklenbcnedoodl |
Descrizione | Adds Freemap Outdoor and Ortofotomozaika SR map layers to www.geocaching.com and adds link to open cache on www.freemap.sk. |
Dimensione del File | 19.1 KB |
Conteggio Installazioni | 84 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2021-09-05 |
Data di Pubblicazione | 2021-09-05 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | https://www.freemap.sk |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/FreemapSlovakia/fm4gc |
URL della Pagina di Aiuto | https://github.com/FreemapSlovakia/fm4gc/issues |
Lingue Supportate | 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" } ] } |