Rental Deal Analyzer
BetterCapital.us Rental Deal Analyzer
Rental Deal Analyzerคืออะไร?
Rental Deal Analyzer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://bettercapital.us และคุณลักษณะหลักของมันคือ "BetterCapital.us Rental Deal Analyzer"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Rental Deal Analyzer
ดาวน์โหลดไฟล์ส่วนขยาย Rental Deal Analyzer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
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" ] } |