3CX Teams Presence
Sets Presence State in MS Teams
What is 3CX Teams Presence?
3CX Teams Presence is a Chrome extension developed by https://www.t38printer.de, and its main feature is "Sets Presence State in MS Teams".
Extension Screenshots
Download 3CX Teams Presence Extension CRX File
Download 3CX Teams Presence extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Exteneds 3CX Pbx to synchronize presence state with MS Teams
Extension Basic Information
Name | 3CX Teams Presence |
ID | mdbamfolhkbhebabgfbcnphffgfkpmjn |
Official URL | https://chromewebstore.google.com/detail/3cx-teams-presence/mdbamfolhkbhebabgfbcnphffgfkpmjn |
Description | Sets Presence State in MS Teams |
File Size | 16.07 KB |
Installation Count | 58 |
Current Version | 0.0.1.0 |
Last Updated | 2022-05-31 |
Publish Date | 2022-04-20 |
Developer | https://www.t38printer.de |
[email protected] | |
Payment Type | free |
Extension Website | https://www.t38printer.de |
Help Page URL | https://www.t38printer.de |
Privacy Policy Page URL | https://mail2fax.t38printer.de/security.html |
Supported Languages | 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" } } |