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是由https://investorfuse.com开发的Chrome扩展程序,该扩展的主要功能是“InvestorFuse is a CRM for real estate investors. Inside of the CRM you will find contact details for a seller. Lots of investors…”。

扩展截图

screenshot

下载InvestorFuse扩展crx文件

下载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
电子邮箱 [email protected]
付费类型 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'"
}