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 |
Eメール | [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\/*" ] } |