Bulk Postcode Geocode

Geocode a bulk list of postcodes

Bulk Postcode Geocodeとは何ですか?

Bulk Postcode Geocodeはmrmascott10によって開発されたChromeの拡張機能で、その主な機能は「Geocode a bulk list of postcodes」です。

拡張機能のスクリーンショット

screenshot
screenshot

Bulk Postcode Geocode拡張機能のCRXファイルをダウンロード

Bulk Postcode Geocode拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
        }
    }
}