Bulk Postcode Geocode

Geocode a bulk list of postcodes

Bulk Postcode Geocode là gì?

Bulk Postcode Geocode là một tiện ích mở rộng Chrome được phát triển bởi mrmascott10, và tính năng chính của nó là "Geocode a bulk list of postcodes".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Bulk Postcode Geocode

Tải xuống các tệp mở rộng Bulk Postcode Geocode dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Bulk Postcode Geocode Bulk Postcode Geocode
ID fjlcmmjdpkfifjmpphlhknonkfjijbfa
URL Chính Thức https://chromewebstore.google.com/detail/bulk-postcode-geocode/fjlcmmjdpkfifjmpphlhknonkfjijbfa
Mô tả Geocode a bulk list of postcodes
Kích Thước Tệp 95.87 KB
Số Lần Cài Đặt 45
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2021-10-01
Ngày Phát Hành 2021-10-01
Nhà Phát Triển mrmascott10
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://www.tresna.co.uk/getintouch.htm
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    }
}