Show Geocache On Google Maps
Quickly see a geocache's location on a Google map.
Hvad er Show Geocache On Google Maps?
Show Geocache On Google Maps er en Chrome-udvidelse udviklet af Team SW&L, og dens hovedfunktion er "Quickly see a geocache's location on a Google map.".
Udvidelsesskærmbilleder
Download Show Geocache On Google Maps-udvidelses-CRX-fil
Download Show Geocache On Google Maps-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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!
Grundlæggende oplysninger om udvidelsen
Navn | Show Geocache On Google Maps |
ID | inafncgdbdkabeoameibhblnnenpihhn |
Officiel URL | https://chromewebstore.google.com/detail/show-geocache-on-google-m/inafncgdbdkabeoameibhblnnenpihhn |
Beskrivelse | Quickly see a geocache's location on a Google map. |
Filstørrelse | 65.13 KB |
Antal Installationer | 400 |
Nuværende Version | 1.3.2 |
Senest Opdateret | 2020-01-09 |
Udgivelsesdato | 2020-01-09 |
Udvikler | Team SW&L |
Betalingsmetode | free |
Understøttede Sprog | 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\/*" ] } |