Peoplefone Softphone Extension
You need a peoplefone account and a valid subscription for the softphone.
Peoplefone Softphone Extension là gì?
Peoplefone Softphone Extension là một tiện ích mở rộng Chrome được phát triển bởi https://peoplefone.com, và tính năng chính của nó là "You need a peoplefone account and a valid subscription for the softphone.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Peoplefone Softphone Extension
Tải xuống các tệp mở rộng Peoplefone Softphone Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
This extension has to be used in addition to the peoplefone Softphone. The main two features are: - recognize telephone numbers on websites and by clicking them to establish a call from your peoplefone softphone. - notify incoming or outgoing calls and by clicking the notification to bring you directly to the peoplefone Softphone Tab.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Peoplefone Softphone Extension |
ID | egdokdcibedkodjiodgapdplgloblkim |
URL Chính Thức | https://chromewebstore.google.com/detail/peoplefone-softphone-exte/egdokdcibedkodjiodgapdplgloblkim |
Mô tả | You need a peoplefone account and a valid subscription for the softphone. |
Kích Thước Tệp | 19.14 KB |
Số Lần Cài Đặt | 1,448 |
Phiên Bản Hiện Tại | 1.0.1.0 |
Cập Nhật Lần Cuối | 2022-01-27 |
Ngày Phát Hành | 2020-11-13 |
Nhà Phát Triển | https://peoplefone.com |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.peoplefone.com |
URL Trang Trợ Giúp | https://support.peoplefone.ch |
Ngôn Ngữ Được Hỗ Trợ | de,en,fr |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_app_name__", "description": "__MSG_app_description__", "version": "1.0.1.0", "manifest_version": 2, "default_locale": "en", "icons": { "48": "\/img\/icon_48.png", "128": "\/img\/icon_128.png" }, "browser_action": { "default_title": "__MSG_extension_name__" }, "externally_connectable": { "matches": [ "*:\/\/.peoplefone.com\/*" ] }, "permissions": [ "tabs", "notifications", "storage" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "web_accessible_resources": [ "\/img\/icon.svg" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "exclude_matches": [ "*:\/\/webrtc.peoplefone.ch\/*", "*:\/\/softphone.peoplefone.com\/*", "*:\/\/softphone-rc.peoplefone.com\/*" ], "css": [ "content.css" ], "js": [ "content.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/webrtc.peoplefone.ch\/*", "*:\/\/softphone.peoplefone.com\/*", "*:\/\/softphone-rc.peoplefone.com\/*" ], "js": [ "content_notif.js" ] } ] } |