InvestorFuse
InvestorFuse is a CRM for real estate investors. Inside of the CRM you will find contact details for a seller. Lots of investors…
O que é InvestorFuse?
InvestorFuse é uma extensão do Chrome desenvolvida por https://investorfuse.com, e sua principal característica é "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 Tela da Extensão
Baixar o arquivo CRX da Extensão InvestorFuse
Baixe arquivos de extensão InvestorFuse 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
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.
Informações Básicas da Extensão
Nome | InvestorFuse |
ID | odmkikfpodkhncbehmfeolpiljphlonh |
URL Oficial | https://chromewebstore.google.com/detail/investorfuse/odmkikfpodkhncbehmfeolpiljphlonh |
Descrição | InvestorFuse is a CRM for real estate investors. Inside of the CRM you will find contact details for a seller. Lots of investors… |
Tamanho do Arquivo | 31.4 KB |
Contagem de Instalações | 178 |
Versão Atual | 1.1.4 |
Última Atualização | 2022-10-19 |
Data de Publicação | 2021-03-11 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | https://investorfuse.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://www.investorfuse.com/ |
URL da Página de Ajuda | https://help.investorfuse.com/ |
Idiomas Suportados | 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'" } |