InvestorFuse

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

Τι είναι το InvestorFuse;

Το InvestorFuse είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://investorfuse.com, και η κύρια λειτουργία του είναι "InvestorFuse is a CRM for real estate investors. Inside of the CRM you will find contact details for a seller. Lots of investors…".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης InvestorFuse

Λήψη αρχείων επέκτασης InvestorFuse σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα InvestorFuse InvestorFuse
ID odmkikfpodkhncbehmfeolpiljphlonh
Επίσημο URL https://chromewebstore.google.com/detail/investorfuse/odmkikfpodkhncbehmfeolpiljphlonh
Περιγραφή InvestorFuse is a CRM for real estate investors. Inside of the CRM you will find contact details for a seller. Lots of investors…
Μέγεθος Αρχείου 31.4 KB
Αριθμός Εγκαταστάσεων 178
Τρέχουσα Έκδοση 1.1.4
Τελευταία Ενημέρωση 2022-10-19
Ημερομηνία Δημοσίευσης 2021-03-11
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής https://investorfuse.com
Ηλεκτρονικό ταχυδρομείο info@investorfuse.com
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.investorfuse.com/
Διεύθυνση URL της Σελίδας Βοήθειας https://help.investorfuse.com/
Υποστηριζόμενες Γλώσσες 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'"
}