Rental Deal Analyzer

BetterCapital.us Rental Deal Analyzer

Co to jest Rental Deal Analyzer?

Rental Deal Analyzer to rozszerzenie Chrome opracowane przez http://bettercapital.us, a jego główną funkcją jest „BetterCapital.us Rental Deal Analyzer”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Rental Deal Analyzer

Pobierz pliki rozszerzeń Rental Deal Analyzer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Rental Deal Analyzer Rental Deal Analyzer
ID kbhdckjpahlmgfkaoeijepaeaaacpjch
Oficjalny URL https://chrome.google.com/webstore/detail/rental-deal-analyzer/kbhdckjpahlmgfkaoeijepaeaaacpjch
Opis BetterCapital.us Rental Deal Analyzer
Rozmiar pliku 193 KB
Liczba instalacji 134
Aktualna Wersja 0.0.5
Ostatnia Aktualizacja 2022-04-30
Data Publikacji 2021-06-14
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper http://bettercapital.us
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://bettercapital.us
Adres URL Strony Pomocy https://bettercapital.us
Adres URL Strony Polityki Prywatności https://www.bettercapital.us/privacy
Obsługiwane Języki 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"
    ]
}