Show Geocache On Google Maps
Quickly see a geocache's location on a Google map.
什麼是Show Geocache On Google Maps?
Show Geocache On Google Maps是由Team SW&L開發的Chrome擴展程式,該擴展的主要功能是“Quickly see a geocache's location on a Google map.”。
擴展截圖
下載Show Geocache On Google Maps擴展crx文件
下載Show Geocache On Google Maps擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Click on our icon when looking at a geocache page and its location will be shown using a Google map in a new tab. Makes it easy to use features such as street view, measure distances and more! 擴展基本資訊
| 名稱 | |
| ID | inafncgdbdkabeoameibhblnnenpihhn |
| 官方網址 | https://chromewebstore.google.com/detail/show-geocache-on-google-m/inafncgdbdkabeoameibhblnnenpihhn |
| 簡介 | Quickly see a geocache's location on a Google map. |
| 檔案大小 | 65.13 KB |
| 安裝次數 | 400 |
| 目前版本 | 1.3.2 |
| 更新時間 | 2020-01-09 |
| 上架時間 | 2020-01-09 |
| 開發者 | Team SW&L |
| 付費類型 | free |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Show Geocache On Google Maps",
"short_name": "Cache Mapper",
"version": "1.3.2",
"description": "Quickly see a geocache's location on a Google map.",
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/www.geocaching.com\/*"
],
"js": [
"jquery-2.1.3.min.js",
"content.js"
]
}
],
"browser_action": {
"default_icon": "icon.png"
},
"permissions": [
"https:\/\/www.geocaching.com\/*"
]
} | |