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 |
| Eメール | [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"
}
]
} | |