Rental Deal Analyzer

BetterCapital.us Rental Deal Analyzer

Rental Deal Analyzer란 무엇입니까?

Rental Deal Analyzer은(는) http://bettercapital.us에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "BetterCapital.us Rental Deal Analyzer"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Rental Deal Analyzer 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Rental Deal Analyzer Rental Deal Analyzer
ID kbhdckjpahlmgfkaoeijepaeaaacpjch
공식 URL https://chrome.google.com/webstore/detail/rental-deal-analyzer/kbhdckjpahlmgfkaoeijepaeaaacpjch
설명 BetterCapital.us Rental Deal Analyzer
파일 크기 193 KB
설치 횟수 134
현재 버전 0.0.5
최근 업데이트 2022-04-30
출시 날짜 2021-06-14
평점 5.00/5 총 3 개의 평점
개발자 http://bettercapital.us
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://bettercapital.us
도움말 페이지 URL https://bettercapital.us
개인정보 보호 정책 페이지 URL https://www.bettercapital.us/privacy
지원되는 언어 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"
    ]
}