Show Geocache On Google Maps

Quickly see a geocache's location on a Google map.

Qu'est-ce que Show Geocache On Google Maps ?

Show Geocache On Google Maps est une extension Chrome développée par Team SW&L, et sa fonction principale est "Quickly see a geocache's location on a Google map.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Show Geocache On Google Maps

Téléchargez les fichiers d'extension Show Geocache On Google Maps au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Show Geocache On Google Maps Show Geocache On Google Maps
ID inafncgdbdkabeoameibhblnnenpihhn
URL Officiel https://chromewebstore.google.com/detail/show-geocache-on-google-m/inafncgdbdkabeoameibhblnnenpihhn
Description Quickly see a geocache's location on a Google map.
Taille du Fichier 65.13 KB
Nombre d'Installations 400
Version Actuelle 1.3.2
Dernière Mise à Jour 2020-01-09
Date de Publication 2020-01-09
Développeur Team SW&L
Type de Paiement free
Langues Prises en Charge 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\/*"
    ]
}