Peoplefone Softphone Extension

You need a peoplefone account and a valid subscription for the softphone.

Was ist Peoplefone Softphone Extension?

Peoplefone Softphone Extension ist eine Chrome-Erweiterung, die von https://peoplefone.com entwickelt wurde, und ihr Hauptmerkmal ist "You need a peoplefone account and a valid subscription for the softphone.".

Erweiterungsscreenshots

screenshot

Peoplefone Softphone Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie Peoplefone Softphone Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Peoplefone Softphone Extension Peoplefone Softphone Extension
ID egdokdcibedkodjiodgapdplgloblkim
Offizielle URL https://chromewebstore.google.com/detail/peoplefone-softphone-exte/egdokdcibedkodjiodgapdplgloblkim
Beschreibung You need a peoplefone account and a valid subscription for the softphone.
Dateigröße 19.14 KB
Installationsanzahl 1,448
Aktuelle Version 1.0.1.0
Letztes Update 2022-01-27
Veröffentlichungsdatum 2020-11-13
Entwickler https://peoplefone.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.peoplefone.com
Hilfeseite URL https://support.peoplefone.ch
Unterstützte Sprachen 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"
            ]
        }
    ]
}