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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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'"
}