InvestorFuse

InvestorFuse is a CRM for real estate investors. Inside of the CRM you will find contact details for a seller. Lots of investors…

Cos'è InvestorFuse?

InvestorFuse è un'estensione di Chrome sviluppata da https://investorfuse.com, e la sua funzione principale è "InvestorFuse is a CRM for real estate investors. Inside of the CRM you will find contact details for a seller. Lots of investors…".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione InvestorFuse

Scarica i file di estensione InvestorFuse 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

                        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.                    

Informazioni di Base sull'Estensione

Nome InvestorFuse InvestorFuse
ID odmkikfpodkhncbehmfeolpiljphlonh
URL Ufficiale https://chromewebstore.google.com/detail/investorfuse/odmkikfpodkhncbehmfeolpiljphlonh
Descrizione InvestorFuse is a CRM for real estate investors. Inside of the CRM you will find contact details for a seller. Lots of investors…
Dimensione del File 31.4 KB
Conteggio Installazioni 178
Versione Corrente 1.1.4
Ultimo Aggiornamento 2022-10-19
Data di Pubblicazione 2021-03-11
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore https://investorfuse.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.investorfuse.com/
URL della Pagina di Aiuto https://help.investorfuse.com/
Lingue Supportate 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'"
}