3CX Teams Presence
Sets Presence State in MS Teams
Cos'è 3CX Teams Presence?
3CX Teams Presence è un'estensione di Chrome sviluppata da https://www.t38printer.de, e la sua funzione principale è "Sets Presence State in MS Teams".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione 3CX Teams Presence
Scarica i file di estensione 3CX Teams Presence 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
Exteneds 3CX Pbx to synchronize presence state with MS Teams Informazioni di Base sull'Estensione
| Nome | |
| ID | mdbamfolhkbhebabgfbcnphffgfkpmjn |
| URL Ufficiale | https://chromewebstore.google.com/detail/3cx-teams-presence/mdbamfolhkbhebabgfbcnphffgfkpmjn |
| Descrizione | Sets Presence State in MS Teams |
| Dimensione del File | 16.07 KB |
| Conteggio Installazioni | 58 |
| Versione Corrente | 0.0.1.0 |
| Ultimo Aggiornamento | 2022-05-31 |
| Data di Pubblicazione | 2022-04-20 |
| Sviluppatore | https://www.t38printer.de |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://www.t38printer.de |
| URL della Pagina di Aiuto | https://www.t38printer.de |
| URL della Pagina della Politica sulla Privacy | https://mail2fax.t38printer.de/security.html |
| Lingue Supportate | de |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "3CX Teams Presence",
"description": "Sets Presence State in MS Teams",
"version": "0.0.1.0",
"options_ui": {
"page": "options.html"
},
"permissions": [
"storage",
"tabs"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/teams.microsoft.com\/*",
"https:\/\/teams.live.com\/*"
],
"js": [
"content_script.js"
],
"run_at": "document_start"
}
],
"icons": {
"16": "images\/icons\/16.png",
"19": "images\/icons\/19.png",
"38": "images\/icons\/38.png",
"64": "images\/icons\/64.png",
"128": "images\/icons\/128.png"
}
} | |