HouseStatistics

Calculate rental property metrics for any real estate investment property - useful for real estate agents and investors

HouseStatistics là gì?

HouseStatistics là một tiện ích mở rộng Chrome được phát triển bởi Raghav, và tính năng chính của nó là "Calculate rental property metrics for any real estate investment property - useful for real estate agents and investors".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng HouseStatistics

Tải xuống các tệp mở rộng HouseStatistics dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Measuring profitability is important when weighing potential investments.  In real estate, understanding ROI, cash flow, and how different variables influence these values is essential to gauge how profitable a particular investment might be.

This extension calculates rental property metrics such as the ones listed below.
- Return on investment (ROI)
- Cash flow
- Mortgage payments
- Downpayment

How it works -
Simply input key information about the property and metrics about the property will be calculated.

- If you are browsing properties on Zillow, simply click one button to automatically import the property information into the extension.

NOTE: In order for this feature to work properly, you must be on a link in Zillow that looks like this - https://www.zillow.com/homedetails/*
 
This calculator takes into account several different variables when making the calculation.
-Home Value
-Downpayment percent
-Loan interest rate
-Rent
-Property Tax
-HOA
-Home Insurance
-Renovation costs                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên HouseStatistics HouseStatistics
ID jcdocbolcpfcdbbjfnfokpidfoepbnkb
URL Chính Thức https://chromewebstore.google.com/detail/housestatistics/jcdocbolcpfcdbbjfnfokpidfoepbnkb
Mô tả Calculate rental property metrics for any real estate investment property - useful for real estate agents and investors
Kích Thước Tệp 148 KB
Số Lần Cài Đặt 140
Phiên Bản Hiện Tại 2.0.0
Cập Nhật Lần Cuối 2022-06-23
Ngày Phát Hành 2020-06-06
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Raghav
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://forms.gle/HNiixJqUzJ1VPWAFA
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "HouseStatistics",
    "description": "Calculate rental property metrics for any real estate investment property - useful for real estate agents and investors",
    "author": "Raghav",
    "version": "2.0.0",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "permissions": [],
    "action": {
        "default_icon": {
            "16": "icons\/16.png",
            "32": "icons\/32.png",
            "48": "icons\/48.png",
            "128": "icons\/128.png"
        },
        "default_title": "Real Estate ROI Calculator",
        "default_popup": "popup.html"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.zillow.com\/homedetails\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": []
}