Bulk Postcode Geocode
Geocode a bulk list of postcodes
Co to jest Bulk Postcode Geocode?
Bulk Postcode Geocode to rozszerzenie Chrome opracowane przez mrmascott10, a jego główną funkcją jest „Geocode a bulk list of postcodes”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Bulk Postcode Geocode
Pobierz pliki rozszerzeń Bulk Postcode Geocode w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Bulk Postcode Geocode |
ID | fjlcmmjdpkfifjmpphlhknonkfjijbfa |
Oficjalny URL | https://chromewebstore.google.com/detail/bulk-postcode-geocode/fjlcmmjdpkfifjmpphlhknonkfjijbfa |
Opis | Geocode a bulk list of postcodes |
Rozmiar pliku | 95.87 KB |
Liczba instalacji | 45 |
Aktualna Wersja | 1.0.0 |
Ostatnia Aktualizacja | 2021-10-01 |
Data Publikacji | 2021-10-01 |
Deweloper | mrmascott10 |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Pomocy | https://www.tresna.co.uk/getintouch.htm |
Obsługiwane Języki | 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" } } } |