Rental Deal Analyzer
BetterCapital.us Rental Deal Analyzer
Cos'è Rental Deal Analyzer?
Rental Deal Analyzer è un'estensione di Chrome sviluppata da http://bettercapital.us, e la sua funzione principale è "BetterCapital.us Rental Deal Analyzer".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Rental Deal Analyzer
Scarica i file di estensione Rental Deal Analyzer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | kbhdckjpahlmgfkaoeijepaeaaacpjch |
URL Ufficiale | https://chrome.google.com/webstore/detail/rental-deal-analyzer/kbhdckjpahlmgfkaoeijepaeaaacpjch |
Descrizione | BetterCapital.us Rental Deal Analyzer |
Dimensione del File | 193 KB |
Conteggio Installazioni | 134 |
Versione Corrente | 0.0.5 |
Ultimo Aggiornamento | 2022-04-30 |
Data di Pubblicazione | 2021-06-14 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | http://bettercapital.us |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://bettercapital.us |
URL della Pagina di Aiuto | https://bettercapital.us |
URL della Pagina della Politica sulla Privacy | https://www.bettercapital.us/privacy |
Lingue Supportate | 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" ] } |