Home Scanner
Scan homes in a radius
Home Scanner란 무엇입니까?
Home Scanner은(는) https://justinschultz.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Scan homes in a radius"입니다.
확장 프로그램 스크린샷
Home Scanner 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Home Scanner Augments Google Maps to display Zillow info and images for each address. Also includes Streetview images. Each listing contains: +Address +Home Type +Assessed Value +Coordinates +Square Footage +Beds/Baths +Distance from pinpoint How to Use: Right click within Google Maps and click the Home Scanner button.
확장 프로그램 기본 정보
이름 | |
ID | jemdonaaoheinklbabmnaolfjdcllfok |
공식 URL | https://chromewebstore.google.com/detail/home-scanner/jemdonaaoheinklbabmnaolfjdcllfok |
설명 | Scan homes in a radius |
파일 크기 | 3.36 MB |
설치 횟수 | 81 |
현재 버전 | 2.0.2 |
최근 업데이트 | 2024-02-01 |
출시 날짜 | 2020-06-20 |
평점 | 5.00/5 총 8 개의 평점 |
개발자 | https://justinschultz.dev |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Scan homes in a radius", "version": "2.0.2", "manifest_version": 3, "name": "Home Scanner", "options_page": "options.html", "background": { "service_worker": "background.bundle.js" }, "permissions": [ "sidePanel", "storage", "tabs", "scripting" ], "host_permissions": [ "https:\/\/zillow.com\/*" ], "action": { "default_icon": "homescanner32.png" }, "side_panel": { "default_path": "newtab.html" }, "icons": { "128": "homescanner128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.hostcompliance.com\/*", "*:\/\/*.homeaway.com\/*", "*:\/\/*.vrbo.com\/*", "*:\/\/*.google.com\/maps*", "*:\/\/*.google.com\/maps\/place\/*", "*:\/\/*.realtor.com\/*" ], "js": [ "contentScript.bundle.js" ], "css": [ "content.styles.css" ], "all_frames": true }, { "matches": [ "*:\/\/*\/newtab.html" ], "js": [ "newtab.bundle.js" ] } ], "devtools_page": "devtools.html", "web_accessible_resources": [ { "resources": [ "content.styles.css", "homescanner128.png", "homescanner32.png", "newtab.html", "\/src\/assets\/img\/no-photo.png" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ] } ] } |