Zillow Cash Flow Calculator
Calculator for real estate rental homes
什么是Zillow Cash Flow Calculator?
Zillow Cash Flow Calculator是由https://cashflowexpert.io开发的Chrome扩展程序,该扩展的主要功能是“Calculator for real estate rental homes”。
扩展截图
下载Zillow Cash Flow Calculator扩展crx文件
下载Zillow Cash Flow Calculator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The Zillow rental cashflow calculator was made with the real estate investor in mind, we automate the calculation process so that you can focus on your next deal. In less than 3s determine the profitability of any property. For now we are only compatible with Zillow. We are in the works to support the other major real estate sites in the future.
扩展基本信息
名称 | Zillow Cash Flow Calculator |
ID | caanploiiehcbbledgfjccgljbgdcdbf |
官方URL | https://chromewebstore.google.com/detail/zillow-cash-flow-calculat/caanploiiehcbbledgfjccgljbgdcdbf |
简介 | Calculator for real estate rental homes |
文件大小 | 4.97 MB |
安装次数 | 210 |
当前版本 | 0.0.3.0 |
更新时间 | 2023-06-23 |
上架时间 | 2020-03-19 |
评分 | 4.00/5 共3次评分 |
开发者 | https://cashflowexpert.io |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | http://cashflowexpert.io/ |
帮助页面URL | https://cashflowexpertio.freshdesk.com/support/tickets/new |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Zillow Cash Flow Calculator", "description": "Calculator for real estate rental homes", "version": "0.0.3.0", "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_icon": { "16": "img\/logo-16.png", "32": "img\/logo-32.png", "48": "img\/logo-48.png", "64": "img\/logo-64.png", "128": "img\/logo-128.png" }, "icons": { "16": "img\/logo-16.png", "32": "img\/logo-32.png", "48": "img\/logo-48.png", "64": "img\/logo-64.png", "128": "img\/logo-128.png" }, "default_title": "Investor Calculator", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.zillow.com\/*" ], "js": [ "content.js" ] } ], "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/www.google-analytics.com; object-src 'self'", "permissions": [ "tabs", "storage", "declarativeContent", "identity", "notifications", "storage", "https:\/\/stark-springs-27645.herokuapp.com\/*", "https:\/\/cashflowexpert.*", "https:\/\/big-stingray-33.hasura.app\/v1\/graphql", "https:\/\/*.auth0.com\/*" ] } |