Bulk Postcode Geocode
Geocode a bulk list of postcodes
Wat is Bulk Postcode Geocode?
Bulk Postcode Geocode is een Chrome-extensie ontwikkeld door mrmascott10, en de belangrijkste functie is "Geocode a bulk list of postcodes".
Extensie Screenshots
Download het CRX-bestand van de extensie Bulk Postcode Geocode
Download Bulk Postcode Geocode-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Bulk Postcode Geocode |
ID | fjlcmmjdpkfifjmpphlhknonkfjijbfa |
Officiële URL | https://chromewebstore.google.com/detail/bulk-postcode-geocode/fjlcmmjdpkfifjmpphlhknonkfjijbfa |
Beschrijving | Geocode a bulk list of postcodes |
Bestandsgrootte | 95.87 KB |
Aantal Installaties | 45 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2021-10-01 |
Publicatiedatum | 2021-10-01 |
Ontwikkelaar | mrmascott10 |
[email protected] | |
Betalingswijze | free |
Help Pagina-URL | https://www.tresna.co.uk/getintouch.htm |
Ondersteunde Talen | 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" } } } |