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.”。

扩展截图

screenshot
screenshot
screenshot

下载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!                    

扩展基本信息

名称 Show Geocache On Google Maps Show Geocache On Google Maps
ID inafncgdbdkabeoameibhblnnenpihhn
官方URL 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\/*"
    ]
}