InvestorFuse

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

Was ist InvestorFuse?

InvestorFuse ist eine Chrome-Erweiterung, die von https://investorfuse.com entwickelt wurde, und ihr Hauptmerkmal ist "InvestorFuse is a CRM for real estate investors. Inside of the CRM you will find contact details for a seller. Lots of investors…".

Erweiterungsscreenshots

screenshot

InvestorFuse-Erweiterungs-CRX-Datei herunterladen

Laden Sie InvestorFuse-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name InvestorFuse InvestorFuse
ID odmkikfpodkhncbehmfeolpiljphlonh
Offizielle URL https://chromewebstore.google.com/detail/investorfuse/odmkikfpodkhncbehmfeolpiljphlonh
Beschreibung InvestorFuse is a CRM for real estate investors. Inside of the CRM you will find contact details for a seller. Lots of investors…
Dateigröße 31.4 KB
Installationsanzahl 178
Aktuelle Version 1.1.4
Letztes Update 2022-10-19
Veröffentlichungsdatum 2021-03-11
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler https://investorfuse.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.investorfuse.com/
Hilfeseite URL https://help.investorfuse.com/
Unterstützte Sprachen 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'"
}