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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Nhan Bach และคุณลักษณะหลักของมันคือ "Interoperate with Zillow to help you have a big picture of your comparisons."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Real Estate Analysis Extension

ดาวน์โหลดไฟล์ส่วนขยาย Real Estate Analysis Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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"
            ]
        }
    ]
}