Share to Teams
Share any web page from your browser with your Teams
What is Share to Teams?
Share to Teams is a Chrome extension developed by João Ferreira, and its main feature is "Share any web page from your browser with your Teams".
Extension Screenshots
Download Share to Teams Extension CRX File
Download Share to Teams 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
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.
Extension Basic Information
Name | Share to Teams |
ID | mncdedgmeogkaeicgbgpbnnejjebphof |
Official URL | https://chromewebstore.google.com/detail/share-to-teams/mncdedgmeogkaeicgbgpbnnejjebphof |
Description | Share any web page from your browser with your Teams |
File Size | 4.27 KB |
Installation Count | 1,161 |
Current Version | 1.1 |
Last Updated | 2020-05-25 |
Publish Date | 2020-05-25 |
Rating | 5.00/5 Total 3 Ratings |
Developer | João Ferreira |
[email protected] | |
Payment Type | free |
Extension Website | https://handsontek.net |
Supported Languages | 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" ] } |