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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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" } } } |