InvestorFuse
InvestorFuse is a CRM for real estate investors. Inside of the CRM you will find contact details for a seller. Lots of investors…
¿Qué es InvestorFuse?
InvestorFuse es una extensión de Chrome desarrollada por https://investorfuse.com, y su función principal es "InvestorFuse is a CRM for real estate investors. Inside of the CRM you will find contact details for a seller. Lots of investors…".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión InvestorFuse
Descarga archivos de extensión InvestorFuse en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
InvestorFuse is a CRM for real estate investors. Inside of the CRM you will find contact details for a seller. Lots of investors use callrail as their calling software of choice. In order to allow investors the click to call functionality in InvestorFuse this extension was created. Once the extension is installed you will be able to choose a Callrail company and phone number that you will dial out from. Once in the InvestorFuse CRM a calling icon will appear next to phone numbers. Upon clicking this it will open the Callrail lead center in a seperate tab and dial the number with the outbound tracking number inputted into the extension's settings.
Información Básica de la Extensión
Nombre | InvestorFuse |
ID | odmkikfpodkhncbehmfeolpiljphlonh |
URL Oficial | https://chromewebstore.google.com/detail/investorfuse/odmkikfpodkhncbehmfeolpiljphlonh |
Descripción | InvestorFuse is a CRM for real estate investors. Inside of the CRM you will find contact details for a seller. Lots of investors… |
Tamaño del Archivo | 31.4 KB |
Cantidad de Instalaciones | 178 |
Versión Actual | 1.1.4 |
Última Actualización | 2022-10-19 |
Fecha de Publicación | 2021-03-11 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | https://investorfuse.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://www.investorfuse.com/ |
URL de la Página de Ayuda | https://help.investorfuse.com/ |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.1.4", "manifest_version": 2, "name": "InvestorFuse", "description": "", "browser_action": { "default_title": "InvestorFuse", "default_popup": "popup.html" }, "icons": { "128": "phone.png" }, "background": { "scripts": [ "bg.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*.investorfuse.com\/*" ], "js": [ "content.js" ], "css": [ "content.css" ], "run_at": "document_end" } ], "permissions": [ "tabs", "storage", "cookies", "*:\/\/*.investorfuse.com\/*", "*:\/\/app.callrail.com\/*" ], "web_accessible_resources": [ "phone.png" ], "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/cdn.jsdelivr.net; object-src 'self'" } |