Rental Deal Analyzer

BetterCapital.us Rental Deal Analyzer

Wat is Rental Deal Analyzer?

Rental Deal Analyzer is een Chrome-extensie ontwikkeld door http://bettercapital.us, en de belangrijkste functie is "BetterCapital.us Rental Deal Analyzer".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Rental Deal Analyzer

Download Rental Deal Analyzer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        BetterCapital.us goal is to provide tools and resources to real estate investors. 

This plugin would help investors analyze a property that is listed on Zillow, Redfin or Realtor.com. And see what the Cash on Cash ROI based on Fair Market Rent and bunch of other public data points.                    

Basisinformatie over de Extensie

Naam Rental Deal Analyzer Rental Deal Analyzer
ID kbhdckjpahlmgfkaoeijepaeaaacpjch
Officiële URL https://chrome.google.com/webstore/detail/rental-deal-analyzer/kbhdckjpahlmgfkaoeijepaeaaacpjch
Beschrijving BetterCapital.us Rental Deal Analyzer
Bestandsgrootte 193 KB
Aantal Installaties 134
Huidige Versie 0.0.5
Laatst Bijgewerkt 2022-04-30
Publicatiedatum 2021-06-14
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar http://bettercapital.us
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://bettercapital.us
Help Pagina-URL https://bettercapital.us
URL van de Privacybeleid Pagina https://www.bettercapital.us/privacy
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Rental Deal Analyzer",
    "manifest_version": 2,
    "version": "0.0.5",
    "description": "BetterCapital.us Rental Deal Analyzer",
    "content_scripts": [
        {
            "js": [
                "jquery-3.5.1.min.js",
                "content.js"
            ],
            "matches": [
                "https:\/\/*.redfin.com\/*",
                "https:\/\/*.zillow.com\/*",
                "https:\/\/*.realtor.com\/*"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "logo16.png",
        "48": "logo48.png",
        "128": "logo128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "logo16.png",
            "24": "logo24.png",
            "32": "logo32.png"
        }
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval' 'sha256-ZXXw+M5rNakBChk5dSr9Zyf5zg11COc5BJbgn5ZLcl8='; object-src 'self'",
    "permissions": [
        "contextMenus",
        "activeTab",
        "storage"
    ],
    "web_accessible_resources": [
        "*.html",
        "logo-alt.png"
    ]
}