Click to Call by PhoneIQ

Makes PhoneIQ: links out of phone numbers on the page, so you can click them to dial with PhoneIQ

什麼是Click to Call by PhoneIQ?

Click to Call by PhoneIQ是由dev開發的Chrome擴展程式,該擴展的主要功能是“Makes PhoneIQ: links out of phone numbers on the page, so you can click them to dial with PhoneIQ”。

擴展截圖

screenshot

下載Click to Call by PhoneIQ擴展crx文件

下載Click to Call by PhoneIQ擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        The PhoneIQ Click to Dial extension enables users to initiate outbound phone calls via PhoneIQ’s desktop app by just clicking on phone numbers within Salesforce. 

PhoneIQ is a new breed of cloud based contact center & unified communications software designed and built for companies using Salesforce. Unlike traditional telephony and call center solutions, PhoneIQ is fully integrated with the Salesforce platform, leveraging data within the CRM and AI to radically change the way business communications work.                    

擴展基本資訊

名稱 Click to Call by PhoneIQ Click to Call by PhoneIQ
ID lgeeknebmmlolagoalmhminclogblcfb
官方網址 https://chromewebstore.google.com/detail/click-to-call-by-phoneiq/lgeeknebmmlolagoalmhminclogblcfb
簡介 Makes PhoneIQ: links out of phone numbers on the page, so you can click them to dial with PhoneIQ
檔案大小 53.45 KB
安裝次數 50
目前版本 2.0.0
更新時間 2024-02-15
上架時間 2020-03-16
評分 5.00/5 共 2 次評分
開發者 dev
電子郵箱 [email protected]
付費類型 free
擴展官網 https://www.phoneiq.co/
說明頁面URL https://help.phoneiq.co/
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Click to Call by PhoneIQ",
    "version": "2.0.0",
    "manifest_version": 3,
    "description": "Makes PhoneIQ: links out of phone numbers on the page, so you can click them to dial with PhoneIQ",
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "contentscript.js"
    ],
    "page_action": {
        "default_icon": "phoneiq_logo.png",
        "default_title": "PhoneIQ Click to Call"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "exclude_matches": [
                "https:\/\/mail.google.com\/*",
                "http:\/\/mail.google.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "js": [
                "jquery-1.4.4.min.js",
                "jquery.ba-replacetext.min.js",
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "icons": {
        "16": "phoneiq_logo.png",
        "48": "phoneiq_logo.png",
        "128": "phoneiq_logo.png"
    },
    "permissions": [
        "activeTab"
    ]
}