Share to Teams
Share any web page from your browser with your Teams
O que é Share to Teams?
Share to Teams é uma extensão do Chrome desenvolvida por João Ferreira, e sua principal característica é "Share any web page from your browser with your Teams".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Share to Teams
Baixe arquivos de extensão Share to Teams no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Share to Teams |
ID | mncdedgmeogkaeicgbgpbnnejjebphof |
URL Oficial | https://chromewebstore.google.com/detail/share-to-teams/mncdedgmeogkaeicgbgpbnnejjebphof |
Descrição | Share any web page from your browser with your Teams |
Tamanho do Arquivo | 4.27 KB |
Contagem de Instalações | 1,161 |
Versão Atual | 1.1 |
Última Atualização | 2020-05-25 |
Data de Publicação | 2020-05-25 |
Classificação | 5.00/5 Total de 3 Avaliações |
Desenvolvedor | João Ferreira |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://handsontek.net |
Idiomas Suportados | 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" ] } |