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 |
公式URL | 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 |
Eメール | [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" ] } ] } |