Switchvox Dial
Call phone numbers on a webpage using Switchvox.
什麼是Switchvox Dial?
Switchvox Dial是由Switchvox開發的Chrome擴展程式,該擴展的主要功能是“Call phone numbers on a webpage using Switchvox.”。
擴展截圖
下載Switchvox Dial擴展crx文件
下載Switchvox Dial擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
A Switchvox Business Phone System is required. The extension lets you dial any phone number with three simple steps: select the phone number, right-click, and choose dial. And you can redial, even after you leave the webpage. 擴展基本資訊
| 名稱 | |
| ID | maccjkeijombhmhohimpldgplfdgfiig |
| 官方網址 | https://chromewebstore.google.com/detail/switchvox-dial/maccjkeijombhmhohimpldgplfdgfiig |
| 簡介 | Call phone numbers on a webpage using Switchvox. |
| 檔案大小 | 476 KB |
| 安裝次數 | 634 |
| 目前版本 | 3.0.3 |
| 更新時間 | 2022-07-20 |
| 上架時間 | 2022-07-19 |
| 評分 | 1.00/5 共 1 次評分 |
| 開發者 | Switchvox |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://www.sangoma.com/business-phone-systems/features/click-to-dial/ |
| 說明頁面URL | https://help.sangoma.com/community/s/article/How-do-I-use-Switchvox-Dial |
| 隱私政策頁面URL | https://www.sangoma.com/wp-content/uploads/Privacy-Policy.pdf |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Switchvox Dial",
"version": "3.0.3",
"manifest_version": 3,
"minimum_chrome_version": "88",
"description": "Call phone numbers on a webpage using Switchvox.",
"homepage_url": "http:\/\/www1.digium.com\/en\/products\/switchvox\/features\/switchvox-apps",
"options_ui": {
"page": "static\/html\/options.html",
"browser_style": true
},
"icons": {
"16": "static\/images\/switchboard_extension_icon_16.png",
"32": "static\/images\/switchboard_extension_icon_32.png",
"48": "static\/images\/switchboard_extension_icon_48.png",
"128": "static\/images\/switchboard_extension_icon_128.png"
},
"content_scripts": [
{
"matches": [
"file:\/\/*\/*",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"dist\/content.js"
],
"css": [
"static\/content.css"
]
}
],
"permissions": [
"storage",
"tabs",
"contextMenus",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"background": {
"service_worker": "dist\/background.js"
},
"action": {
"default_icon": "static\/images\/switchboard_extension_icon_32.png",
"default_popup": "static\/html\/popup.html",
"browser_style": false
},
"web_accessible_resources": [
{
"resources": [
"static\/*"
],
"use_dynamic_url": true
}
]
} | |