Real Estate Analysis Extension
Interoperate with Zillow to help you have a big picture of your comparisons.
Real Estate Analysis Extension란 무엇입니까?
Real Estate Analysis Extension은(는) Nhan Bach에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Interoperate with Zillow to help you have a big picture of your comparisons."입니다.
확장 프로그램 스크린샷
Real Estate Analysis Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This addon is about to help people who are looking for houses listed on Zillow. It pulls all exactly bed-by-bed bath-by-bath similar properties and show you a big picture if the price is reasonable. Features: 1. Compare your property to others similar bed-by-bed/near by. 2. Show you how much the similar properties rent out. 3. Give you insight about your area by a zip code. 4. Great School and Crime Score for where your property locate. Hotkeys: 1. To shortly show/hide the analysis: Press Ctrl+X
확장 프로그램 기본 정보
이름 | Real Estate Analysis Extension |
ID | lfphkkfnhgbjkljhaamchkfchlndjcgb |
공식 URL | https://chromewebstore.google.com/detail/real-estate-analysis-exte/lfphkkfnhgbjkljhaamchkfchlndjcgb |
설명 | Interoperate with Zillow to help you have a big picture of your comparisons. |
파일 크기 | 3.71 MB |
설치 횟수 | 275 |
현재 버전 | 1.3.2 |
최근 업데이트 | 2022-09-20 |
출시 날짜 | 2020-04-14 |
평점 | 4.75/5 총 4 개의 평점 |
개발자 | Nhan Bach |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Real Estate Analysis Extension", "version": "1.3.2", "manifest_version": 2, "description": "Interoperate with Zillow to help you have a big picture of your comparisons.", "background": { "scripts": [ "background.js" ], "persistent": true }, "web_accessible_resources": [ "assets\/*.gif" ], "commands": { "toggle-re-chrome": { "suggested_key": { "default": "Ctrl+X", "mac": "MacCtrl+X" }, "description": "Toggle realestate page" } }, "icons": { "16": "assets\/house16.png", "48": "assets\/house32.png", "128": "assets\/house128.png" }, "permissions": [ "unlimitedStorage", "storage", "tabs", "webRequest", "webRequestBlocking", "https:\/\/www.zillow.com\/*", "https:\/\/www.greatschools.org\/*", "https:\/\/www.adt.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/zillow.com\/*", "https:\/\/www.zillow.com\/*" ], "js": [ "injectAssets.js" ] }, { "matches": [ "https:\/\/zillow.com\/*", "https:\/\/www.zillow.com\/*" ], "js": [ "vue\/js\/chunk-vendors.c9f5e0d6.js", "vue\/js\/app.32e80906.js" ], "css": [ "vue\/css\/app.5f9493b4.css" ] } ] } |