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.

Vad är Freemap.sk for Geocaching?

Freemap.sk for Geocaching är en Chrome-tillägg utvecklad av https://www.freemap.sk, och dess huvudfunktion är "Adds Freemap Outdoor and Ortofotomozaika SR map layers to www.geocaching.com and adds link to open cache on www.freemap.sk.".

Tilläggsskärmbilder

screenshot

Ladda ner Freemap.sk for Geocaching-förlängningens CRX-fil

Ladda ner Freemap.sk for Geocaching-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Freemap.sk for Geocaching Freemap.sk for Geocaching
ID iapkfaedafblcbjnjdhklenbcnedoodl
Officiell webbadress https://chromewebstore.google.com/detail/freemapsk-for-geocaching/iapkfaedafblcbjnjdhklenbcnedoodl
Beskrivning Adds Freemap Outdoor and Ortofotomozaika SR map layers to www.geocaching.com and adds link to open cache on www.freemap.sk.
Filstorlek 19.1 KB
Antal Installationer 84
Aktuell Version 1.0
Senast Uppdaterad 2021-09-05
Publiceringsdatum 2021-09-05
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare https://www.freemap.sk
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/FreemapSlovakia/fm4gc
Hjälpsida URL https://github.com/FreemapSlovakia/fm4gc/issues
Stödda Språk 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"
        }
    ]
}