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 |
官方網址 | 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" ] } |