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؟
Freemap.sk for Geocaching هو إضافة Chrome تم تطويرها بواسطة https://www.freemap.sk، والميزة الرئيسية لها هي "Adds Freemap Outdoor and Ortofotomozaika SR map layers to www.geocaching.com and adds link to open cache on www.freemap.sk.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Freemap.sk for Geocaching
قم بتنزيل ملفات الامتداد Freemap.sk for Geocaching بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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.
معلومات أساسية عن التمديد
الاسم | Freemap.sk for Geocaching |
ID | iapkfaedafblcbjnjdhklenbcnedoodl |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/freemapsk-for-geocaching/iapkfaedafblcbjnjdhklenbcnedoodl |
الوصف | Adds Freemap Outdoor and Ortofotomozaika SR map layers to www.geocaching.com and adds link to open cache on www.freemap.sk. |
حجم الملف | 19.1 KB |
عدد التثبيتات | 84 |
النسخة الحالية | 1.0 |
آخر تحديث | 2021-09-05 |
تاريخ النشر | 2021-09-05 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | https://www.freemap.sk |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://github.com/FreemapSlovakia/fm4gc |
عنوان صفحة المساعدة | https://github.com/FreemapSlovakia/fm4gc/issues |
اللغات المدعومة | 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" } ] } |