Peoplefone Softphone Extension
You need a peoplefone account and a valid subscription for the softphone.
什麼是Peoplefone Softphone Extension?
Peoplefone Softphone Extension是由https://peoplefone.com開發的Chrome擴展程式,該擴展的主要功能是“You need a peoplefone account and a valid subscription for the softphone.”。
擴展截圖
下載Peoplefone Softphone Extension擴展crx文件
下載Peoplefone Softphone Extension擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Peoplefone Softphone Extension |
ID | egdokdcibedkodjiodgapdplgloblkim |
官方網址 | https://chromewebstore.google.com/detail/peoplefone-softphone-exte/egdokdcibedkodjiodgapdplgloblkim |
簡介 | You need a peoplefone account and a valid subscription for the softphone. |
檔案大小 | 19.14 KB |
安裝次數 | 1,448 |
目前版本 | 1.0.1.0 |
更新時間 | 2022-01-27 |
上架時間 | 2020-11-13 |
開發者 | https://peoplefone.com |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://www.peoplefone.com |
說明頁面URL | https://support.peoplefone.ch |
支援的語言 | 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" ] } ] } |