Truly for Chrome
Truly
什么是Truly for Chrome?
Truly for Chrome是由https://trulywireless.com开发的Chrome扩展程序,该扩展的主要功能是“Truly”。
扩展截图
下载Truly for Chrome扩展crx文件
下载Truly for Chrome扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
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": [ "*:\/\/*\/*" ] } ] } |