HouseStatistics

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

Qu'est-ce que HouseStatistics ?

HouseStatistics est une extension Chrome développée par Raghav, et sa fonction principale est "Calculate rental property metrics for any real estate investment property - useful for real estate agents and investors".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension HouseStatistics

Téléchargez les fichiers d'extension HouseStatistics au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom HouseStatistics HouseStatistics
ID jcdocbolcpfcdbbjfnfokpidfoepbnkb
URL Officiel https://chromewebstore.google.com/detail/housestatistics/jcdocbolcpfcdbbjfnfokpidfoepbnkb
Description Calculate rental property metrics for any real estate investment property - useful for real estate agents and investors
Taille du Fichier 148 KB
Nombre d'Installations 140
Version Actuelle 2.0.0
Dernière Mise à Jour 2022-06-23
Date de Publication 2020-06-06
Évaluation 5.00/5 Total 1 Évaluations
Développeur Raghav
Email [email protected]
Type de Paiement free
URL de la Page d'Aide https://forms.gle/HNiixJqUzJ1VPWAFA
Langues Prises en Charge 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": []
}