Bulk Postcode Geocode

Geocode a bulk list of postcodes

Cos'è Bulk Postcode Geocode?

Bulk Postcode Geocode è un'estensione di Chrome sviluppata da mrmascott10, e la sua funzione principale è "Geocode a bulk list of postcodes".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Bulk Postcode Geocode

Scarica i file di estensione Bulk Postcode Geocode in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Bulk Postcode Geocode Bulk Postcode Geocode
ID fjlcmmjdpkfifjmpphlhknonkfjijbfa
URL Ufficiale https://chromewebstore.google.com/detail/bulk-postcode-geocode/fjlcmmjdpkfifjmpphlhknonkfjijbfa
Descrizione Geocode a bulk list of postcodes
Dimensione del File 95.87 KB
Conteggio Installazioni 45
Versione Corrente 1.0.0
Ultimo Aggiornamento 2021-10-01
Data di Pubblicazione 2021-10-01
Sviluppatore mrmascott10
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://www.tresna.co.uk/getintouch.htm
Lingue Supportate 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"
        }
    }
}