Show Geocache On Google Maps

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

Cos'è Show Geocache On Google Maps?

Show Geocache On Google Maps è un'estensione di Chrome sviluppata da Team SW&L, e la sua funzione principale è "Quickly see a geocache's location on a Google map.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Show Geocache On Google Maps

Scarica i file di estensione Show Geocache On Google Maps in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Show Geocache On Google Maps Show Geocache On Google Maps
ID inafncgdbdkabeoameibhblnnenpihhn
URL Ufficiale https://chromewebstore.google.com/detail/show-geocache-on-google-m/inafncgdbdkabeoameibhblnnenpihhn
Descrizione Quickly see a geocache's location on a Google map.
Dimensione del File 65.13 KB
Conteggio Installazioni 400
Versione Corrente 1.3.2
Ultimo Aggiornamento 2020-01-09
Data di Pubblicazione 2020-01-09
Sviluppatore Team SW&L
Tipo di Pagamento free
Lingue Supportate 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\/*"
    ]
}