Rental Deal Analyzer
BetterCapital.us Rental Deal Analyzer
什么是Rental Deal Analyzer?
Rental Deal Analyzer是由http://bettercapital.us开发的Chrome扩展程序,该扩展的主要功能是“BetterCapital.us Rental Deal Analyzer”。
扩展截图
下载Rental Deal Analyzer扩展crx文件
下载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" ] } |