Bulk Postcode Geocode
Geocode a bulk list of postcodes
Vad är Bulk Postcode Geocode?
Bulk Postcode Geocode är en Chrome-tillägg utvecklad av mrmascott10, och dess huvudfunktion är "Geocode a bulk list of postcodes".
Tilläggsskärmbilder
Ladda ner Bulk Postcode Geocode-förlängningens CRX-fil
Ladda ner Bulk Postcode Geocode-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | fjlcmmjdpkfifjmpphlhknonkfjijbfa |
| Officiell webbadress | https://chromewebstore.google.com/detail/bulk-postcode-geocode/fjlcmmjdpkfifjmpphlhknonkfjijbfa |
| Beskrivning | Geocode a bulk list of postcodes |
| Filstorlek | 95.87 KB |
| Antal Installationer | 45 |
| Aktuell Version | 1.0.0 |
| Senast Uppdaterad | 2021-10-01 |
| Publiceringsdatum | 2021-10-01 |
| Utvecklare | mrmascott10 |
| E-post | [email protected] |
| Betalningssätt | free |
| Hjälpsida URL | https://www.tresna.co.uk/getintouch.htm |
| Stödda Språk | 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"
}
}
} | |