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.

Freemap.sk for Geocaching là gì?

Freemap.sk for Geocaching là một tiện ích mở rộng Chrome được phát triển bởi https://www.freemap.sk, và tính năng chính của nó là "Adds Freemap Outdoor and Ortofotomozaika SR map layers to www.geocaching.com and adds link to open cache on www.freemap.sk.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Freemap.sk for Geocaching

Tải xuống các tệp mở rộng Freemap.sk for Geocaching dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Freemap.sk for Geocaching Freemap.sk for Geocaching
ID iapkfaedafblcbjnjdhklenbcnedoodl
URL Chính Thức https://chromewebstore.google.com/detail/freemapsk-for-geocaching/iapkfaedafblcbjnjdhklenbcnedoodl
Mô tả Adds Freemap Outdoor and Ortofotomozaika SR map layers to www.geocaching.com and adds link to open cache on www.freemap.sk.
Kích Thước Tệp 19.1 KB
Số Lần Cài Đặt 84
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-09-05
Ngày Phát Hành 2021-09-05
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://www.freemap.sk
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/FreemapSlovakia/fm4gc
URL Trang Trợ Giúp https://github.com/FreemapSlovakia/fm4gc/issues
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}