HouseStatistics

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

HouseStatistics란 무엇입니까?

HouseStatistics은(는) Raghav에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Calculate rental property metrics for any real estate investment property - useful for real estate agents and investors"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

HouseStatistics 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 HouseStatistics HouseStatistics
ID jcdocbolcpfcdbbjfnfokpidfoepbnkb
공식 URL https://chromewebstore.google.com/detail/housestatistics/jcdocbolcpfcdbbjfnfokpidfoepbnkb
설명 Calculate rental property metrics for any real estate investment property - useful for real estate agents and investors
파일 크기 148 KB
설치 횟수 140
현재 버전 2.0.0
최근 업데이트 2022-06-23
출시 날짜 2020-06-06
평점 5.00/5 총 1 개의 평점
개발자 Raghav
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://forms.gle/HNiixJqUzJ1VPWAFA
지원되는 언어 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": []
}