Rental Deal Analyzer
BetterCapital.us Rental Deal Analyzer
What is Rental Deal Analyzer?
Rental Deal Analyzer is a Chrome extension developed by http://bettercapital.us, and its main feature is "BetterCapital.us Rental Deal Analyzer".
Extension Screenshots
Download Rental Deal Analyzer Extension CRX File
Download Rental Deal Analyzer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | kbhdckjpahlmgfkaoeijepaeaaacpjch |
Official URL | https://chrome.google.com/webstore/detail/rental-deal-analyzer/kbhdckjpahlmgfkaoeijepaeaaacpjch |
Description | BetterCapital.us Rental Deal Analyzer |
File Size | 193 KB |
Installation Count | 134 |
Current Version | 0.0.5 |
Last Updated | 2022-04-30 |
Publish Date | 2021-06-14 |
Rating | 5.00/5 Total 3 Ratings |
Developer | http://bettercapital.us |
[email protected] | |
Payment Type | free |
Extension Website | https://bettercapital.us |
Help Page URL | https://bettercapital.us |
Privacy Policy Page URL | https://www.bettercapital.us/privacy |
Supported Languages | 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" ] } |