HouseStatistics

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

HouseStatistics क्या है?

HouseStatistics Raghav द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Calculate rental property metrics for any real estate investment property - useful for real estate agents and investors"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में HouseStatistics एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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": []
}