Bulk Postcode Geocode
Geocode a bulk list of postcodes
什麼是Bulk Postcode Geocode?
Bulk Postcode Geocode是由mrmascott10開發的Chrome擴展程式,該擴展的主要功能是“Geocode a bulk list of postcodes”。
擴展截圖
下載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 |
ID | fjlcmmjdpkfifjmpphlhknonkfjijbfa |
官方網址 | 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" } } } |