Bulk Postcode Geocode
Geocode a bulk list of postcodes
Was ist Bulk Postcode Geocode?
Bulk Postcode Geocode ist eine Chrome-Erweiterung, die von mrmascott10 entwickelt wurde, und ihr Hauptmerkmal ist "Geocode a bulk list of postcodes".
Erweiterungsscreenshots
Bulk Postcode Geocode-Erweiterungs-CRX-Datei herunterladen
Laden Sie Bulk Postcode Geocode-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
When writing code for mapping applications or when using existing mapping software it's often necessary to find the latitude and longitude for a certain location. Currently the method most people use is to go to Google Maps, search for a postcode, right click and finally get the latitude and longitude. This is a huge pain if you need to do more than one. This extension will allow you to paste a list of latitude and longitudes into a textbox, click go and receive a list of the relevant latitude, longitudes.
Grundlegende Informationen zur Erweiterung
Name | Bulk Postcode Geocode |
ID | fjlcmmjdpkfifjmpphlhknonkfjijbfa |
Offizielle URL | https://chromewebstore.google.com/detail/bulk-postcode-geocode/fjlcmmjdpkfifjmpphlhknonkfjijbfa |
Beschreibung | Geocode a bulk list of postcodes |
Dateigröße | 95.87 KB |
Installationsanzahl | 45 |
Aktuelle Version | 1.0.0 |
Letztes Update | 2021-10-01 |
Veröffentlichungsdatum | 2021-10-01 |
Entwickler | mrmascott10 |
[email protected] | |
Zahlungsart | free |
Hilfeseite URL | https://www.tresna.co.uk/getintouch.htm |
Unterstützte Sprachen | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Bulk Postcode Geocode", "version": "1.0.0", "description": "Geocode a bulk list of postcodes", "short_name": "Geocode", "host_permissions": [ "https:\/\/www.webmaps.co.uk\/" ], "content_scripts": [ { "matches": [ "https:\/\/www.webmaps.co.uk\/" ], "css": [ "background.css" ], "js": [ "background.js" ] } ], "action": { "default_title": "Geocode a List of Postcodes", "default_popup": "popup.html", "default_icon": { "16": "icons\/icon16.png", "32": "icons\/icon32.png" } } } |