Truly for Chrome

Truly

Truly for Chrome란 무엇입니까?

Truly for Chrome은(는) https://trulywireless.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Truly"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Truly for Chrome 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Truly for Chrome extends your Truly app experience to the browser.

If you are in sales, customer service or recruiting, you likely make many phone calls a day, spending a lot of time on repetitive tasks like copy/pasting phone numbers into your calling applications and logging calls manually into your CRM.

The extension solves this problem by allowing you to initiate calls and text messages with a single click on any page with a phone number.  It also ensures that activity logs created by the Truly application are associated with the right contacts and objects in supported third party websites like CRMs (Salesforce, Zendesk), Sales Engagement Providers (Salesloft, Outreach, Apollo) and Email providers (Gmail).

Requirements: 
This extension requires a companion desktop app which can be downloaded at https://truly.co.  You will not be able to start calls or send text messages without the companion app.
The extension/companion app is intended for use by current customers of Truly only.  Please sign up for an account before installing this extension                    

확장 프로그램 기본 정보

이름 Truly for Chrome Truly for Chrome
ID gjdjododfnfpmdolaoaiihepkcjpfiob
공식 URL https://chromewebstore.google.com/detail/truly-for-chrome/gjdjododfnfpmdolaoaiihepkcjpfiob
설명 Truly
파일 크기 871 KB
설치 횟수 5,024
현재 버전 3.1.5
최근 업데이트 2023-11-17
출시 날짜 2020-05-30
평점 4.69/5 총 16 개의 평점
개발자 https://trulywireless.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://truly.co
개인정보 보호 정책 페이지 URL https://truly.co/privacy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Truly for Chrome",
    "short_name": "Truly",
    "manifest_version": 3,
    "description": "Truly",
    "version": "3.1.5",
    "icons": {
        "16": "icons\/icon-16x16.png",
        "48": "icons\/icon-48x48.png",
        "128": "icons\/icon-128x128.png"
    },
    "background": {
        "service_worker": "js\/background.js",
        "type": "module"
    },
    "action": {
        "default_icon": {
            "16": "icons\/icon-16x16.png",
            "19": "icons\/icon-19x19.png",
            "48": "icons\/icon-48x48.png",
            "128": "icons\/icon-128x128.png"
        },
        "default_title": "Truly"
    },
    "permissions": [
        "tabs",
        "windows",
        "cookies",
        "management"
    ],
    "host_permissions": [
        "https:\/\/local-dev.trulywireless.com\/*",
        "https:\/\/staging.trulywireless.com\/*",
        "https:\/\/dev.trulywireless.com\/*",
        "https:\/\/trulywireless.com\/*",
        "http:\/\/localhost:3000\/*",
        "https:\/\/*.truly.co\/*"
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/content.js"
            ],
            "css": [
                "style\/style.css"
            ],
            "all_frames": true
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/*.truly.co\/*",
            "https:\/\/*.trulywireless.com\/*"
        ]
    },
    "devtools_page": "devtools\/devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "images\/**"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        },
        {
            "resources": [
                "style\/fonts\/**"
            ],
            "matches": [
                "*:\/\/*\/*"
            ]
        }
    ]
}