Share to Teams
Share any web page from your browser with your Teams
Was ist Share to Teams?
Share to Teams ist eine Chrome-Erweiterung, die von João Ferreira entwickelt wurde, und ihr Hauptmerkmal ist "Share any web page from your browser with your Teams".
Erweiterungsscreenshots
Share to Teams-Erweiterungs-CRX-Datei herunterladen
Laden Sie Share to Teams-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 will allow you to share a link directly to Teams channel without switching context.
You no longer need to switch applications to share relevant web sites with your co-workers. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | mncdedgmeogkaeicgbgpbnnejjebphof |
| Offizielle URL | https://chromewebstore.google.com/detail/share-to-teams/mncdedgmeogkaeicgbgpbnnejjebphof |
| Beschreibung | Share any web page from your browser with your Teams |
| Dateigröße | 4.27 KB |
| Installationsanzahl | 1,161 |
| Aktuelle Version | 1.1 |
| Letztes Update | 2020-05-25 |
| Veröffentlichungsdatum | 2020-05-25 |
| Bewertung | 5.00/5 Insgesamt 3 Bewertungen |
| Entwickler | João Ferreira |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://handsontek.net |
| Unterstützte Sprachen | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Share to Teams",
"version": "1.1",
"manifest_version": 2,
"description": "Share any web page from your browser with your Teams",
"homepage_url": "https:\/\/teams.handsontek.net",
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+S",
"mac": "MacCtrl+Shift+S"
},
"description": "Share any web page from your browser with your Teams"
}
},
"browser_action": {
"default_title": "Share to Teams",
"default_icon": "sharetoteams.png"
},
"permissions": [
"https:\/\/*\/*",
"http:\/\/*\/*",
"tabs"
]
} | |