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

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

확장 프로그램 사용 설명서

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