Zillow Cash Flow Calculator
Calculator for real estate rental homes
Τι είναι το Zillow Cash Flow Calculator;
Το Zillow Cash Flow Calculator είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://cashflowexpert.io, και η κύρια λειτουργία του είναι "Calculator for real estate rental homes".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Zillow Cash Flow Calculator
Λήψη αρχείων επέκτασης 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\/*" ] } |