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是由https://www.freemap.sk开发的Chrome扩展程序,该扩展的主要功能是“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扩展crx文件
下载Freemap.sk for Geocaching扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| 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 |
| 帮助页面URL | 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"
}
]
} | |