Bulk Postcode Geocode
Geocode a bulk list of postcodes
Co je Bulk Postcode Geocode?
Bulk Postcode Geocode je rozšíření Chrome vyvinuté mrmascott10, a jeho hlavní funkcí je „Geocode a bulk list of postcodes“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Bulk Postcode Geocode
Stáhněte si soubory rozšíření Bulk Postcode Geocode ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Bulk Postcode Geocode |
ID | fjlcmmjdpkfifjmpphlhknonkfjijbfa |
Oficiální URL | https://chromewebstore.google.com/detail/bulk-postcode-geocode/fjlcmmjdpkfifjmpphlhknonkfjijbfa |
Popis | Geocode a bulk list of postcodes |
Velikost souboru | 95.87 KB |
Počet instalací | 45 |
Aktuální Verze | 1.0.0 |
Poslední Aktualizace | 2021-10-01 |
Datum Vydání | 2021-10-01 |
Vývojář | mrmascott10 |
[email protected] | |
Typ Platby | free |
URL Stránky Nápovědy | https://www.tresna.co.uk/getintouch.htm |
Podporované Jazyky | 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" } } } |