Bulk Postcode Geocode

Geocode a bulk list of postcodes

Bulk Postcode Geocode क्या है?

Bulk Postcode Geocode mrmascott10 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Geocode a bulk list of postcodes"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Bulk Postcode Geocode एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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.                    

एक्सटेंशन की मूल जानकारी

नाम Bulk Postcode Geocode Bulk Postcode Geocode
ID fjlcmmjdpkfifjmpphlhknonkfjijbfa
आधिकारिक URL https://chromewebstore.google.com/detail/bulk-postcode-geocode/fjlcmmjdpkfifjmpphlhknonkfjijbfa
विवरण Geocode a bulk list of postcodes
फ़ाइल का आकार 95.87 KB
स्थापना संख्या 45
वर्तमान संस्करण 1.0.0
अंतिम अपडेट 2021-10-01
प्रकाशन तिथि 2021-10-01
डेवलपर mrmascott10
ईमेल [email protected]
भुगतान के प्रकार free
सहायता पृष्ठ URL https://www.tresna.co.uk/getintouch.htm
समर्थित भाषाएँ 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"
        }
    }
}