Cytracom Chrome Extension

Quickly call, send a business text message, or use Cytracom Discover.

什么是Cytracom Chrome Extension?

Cytracom Chrome Extension是由cytracom-webapp-team开发的Chrome扩展程序,该扩展的主要功能是“Quickly call, send a business text message, or use Cytracom Discover.”。

扩展截图

screenshot
screenshot
screenshot

下载Cytracom Chrome Extension扩展crx文件

下载Cytracom Chrome Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Quickly call, send business text messages, and access contextual customer data using Cytracom Discover from any application or website with the Cytracom Chrome Extension.
 
We are excited to offer the new and improved Cytracom Chrome Extension. Now, you have the ability to click on a phone number within any web-based application (i.e., HubSpot, Salesforce, Autotask, ConnectWise, IT Glue, and others) or other websites to make a phone call, send a business text message, or leverage Cytracom Discover to add context to a conversation.
 
Requirements:
You must have an assigned Cytracom extension. To allow Cytracom Discover to access contextual data, you must be running the Cytracom Desktop application.                    

扩展基本信息

名称 Cytracom Chrome Extension Cytracom Chrome Extension
ID campenkhpibdpdmhmjioophhibmkfagl
官方URL https://chromewebstore.google.com/detail/cytracom-chrome-extension/campenkhpibdpdmhmjioophhibmkfagl
简介 Quickly call, send a business text message, or use Cytracom Discover.
文件大小 3.95 MB
安装次数 2,065
当前版本 23.14.1
更新时间 2023-04-04
上架时间 2018-04-24
评分 4.00/5 共3次评分
开发者 cytracom-webapp-team
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.cytracom.com/
帮助页面URL https://help.cytracom.com/hc/en-us
隐私政策页面URL https://www.cytracom.com/legal/privacy-policy
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "Cytracom",
    "name": "Cytracom Chrome Extension",
    "description": "Quickly call, send a business text message, or use Cytracom Discover.",
    "version": "23.14.1",
    "manifest_version": 2,
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Cytracom",
        "default_popup": "index.html",
        "default_icon": {
            "16": "icons\/16x16.png",
            "32": "icons\/32x32.png",
            "48": "icons\/48x48.png",
            "128": "icons\/128x128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/*.connectwise.com\/*\/*DocumentList*",
                "*:\/\/*.connectwisedev.com\/*\/*DocumentList*"
            ],
            "js": [
                "\/content\/js\/bundle.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "icons\/16x16.png",
        "32": "icons\/32x32.png",
        "48": "icons\/48x48.png",
        "128": "icons\/128x128.png"
    },
    "permissions": [
        "storage",
        "tabs",
        "activeTab",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "ws:\/\/*\/",
        ""
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Alt+C"
            }
        }
    }
}