Rental Deal Analyzer
BetterCapital.us Rental Deal Analyzer
Apa itu Rental Deal Analyzer?
Rental Deal Analyzer adalah ekstensi Chrome yang dikembangkan oleh http://bettercapital.us, dan fitur utamanya adalah "BetterCapital.us Rental Deal Analyzer".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Rental Deal Analyzer
Unduh file ekstensi Rental Deal Analyzer dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | |
ID | kbhdckjpahlmgfkaoeijepaeaaacpjch |
URL Resmi | https://chrome.google.com/webstore/detail/rental-deal-analyzer/kbhdckjpahlmgfkaoeijepaeaaacpjch |
Deskripsi | BetterCapital.us Rental Deal Analyzer |
Ukuran File | 193 KB |
Jumlah Instalasi | 134 |
Versi Saat Ini | 0.0.5 |
Terakhir Diperbarui | 2022-04-30 |
Tanggal Publikasi | 2021-06-14 |
Penilaian | 5.00/5 Total 3 Penilaian |
Pengembang | http://bettercapital.us |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://bettercapital.us |
URL Halaman Bantuan | https://bettercapital.us |
URL Halaman Kebijakan Privasi | https://www.bettercapital.us/privacy |
Bahasa yang Didukung | 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" ] } |