Peoplefone Softphone Extension

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

Cos'è Peoplefone Softphone Extension?

Peoplefone Softphone Extension è un'estensione di Chrome sviluppata da https://peoplefone.com, e la sua funzione principale è "You need a peoplefone account and a valid subscription for the softphone.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Peoplefone Softphone Extension

Scarica i file di estensione Peoplefone Softphone Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Peoplefone Softphone Extension Peoplefone Softphone Extension
ID egdokdcibedkodjiodgapdplgloblkim
URL Ufficiale https://chromewebstore.google.com/detail/peoplefone-softphone-exte/egdokdcibedkodjiodgapdplgloblkim
Descrizione You need a peoplefone account and a valid subscription for the softphone.
Dimensione del File 19.14 KB
Conteggio Installazioni 1,448
Versione Corrente 1.0.1.0
Ultimo Aggiornamento 2022-01-27
Data di Pubblicazione 2020-11-13
Sviluppatore https://peoplefone.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.peoplefone.com
URL della Pagina di Aiuto https://support.peoplefone.ch
Lingue Supportate 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"
            ]
        }
    ]
}