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
公式URL 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
Eメール [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"
    ]
}