Zillow Cash Flow Calculator
Calculator for real estate rental homes
O que é Zillow Cash Flow Calculator?
Zillow Cash Flow Calculator é uma extensão do Chrome desenvolvida por https://cashflowexpert.io, e sua principal característica é "Calculator for real estate rental homes".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Zillow Cash Flow Calculator
Baixe arquivos de extensão Zillow Cash Flow Calculator no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Zillow Cash Flow Calculator |
ID | caanploiiehcbbledgfjccgljbgdcdbf |
URL Oficial | https://chromewebstore.google.com/detail/zillow-cash-flow-calculat/caanploiiehcbbledgfjccgljbgdcdbf |
Descrição | Calculator for real estate rental homes |
Tamanho do Arquivo | 4.97 MB |
Contagem de Instalações | 210 |
Versão Atual | 0.0.3.0 |
Última Atualização | 2023-06-23 |
Data de Publicação | 2020-03-19 |
Classificação | 4.00/5 Total de 3 Avaliações |
Desenvolvedor | https://cashflowexpert.io |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | http://cashflowexpert.io/ |
URL da Página de Ajuda | https://cashflowexpertio.freshdesk.com/support/tickets/new |
Idiomas Suportados | 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\/*" ] } |