Show Geocache On Google Maps
Quickly see a geocache's location on a Google map.
Was ist Show Geocache On Google Maps?
Show Geocache On Google Maps ist eine Chrome-Erweiterung, die von Team SW&L entwickelt wurde, und ihr Hauptmerkmal ist "Quickly see a geocache's location on a Google map.".
Erweiterungsscreenshots
Show Geocache On Google Maps-Erweiterungs-CRX-Datei herunterladen
Laden Sie Show Geocache On Google Maps-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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!
Grundlegende Informationen zur Erweiterung
Name | Show Geocache On Google Maps |
ID | inafncgdbdkabeoameibhblnnenpihhn |
Offizielle URL | https://chromewebstore.google.com/detail/show-geocache-on-google-m/inafncgdbdkabeoameibhblnnenpihhn |
Beschreibung | Quickly see a geocache's location on a Google map. |
Dateigröße | 65.13 KB |
Installationsanzahl | 400 |
Aktuelle Version | 1.3.2 |
Letztes Update | 2020-01-09 |
Veröffentlichungsdatum | 2020-01-09 |
Entwickler | Team SW&L |
Zahlungsart | free |
Unterstützte Sprachen | 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\/*" ] } |