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.
拡張機能の基本情報
名前 | Switchvox Dial |
ID | maccjkeijombhmhohimpldgplfdgfiig |
公式URL | 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 |
Eメール | [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 } ] } |