Microsoft Teams Reply

A Chrome extension adding the reply feature to the web version of Microsoft Teams by quoting the selected text from the context menu

O que é Microsoft Teams Reply?

Microsoft Teams Reply é uma extensão do Chrome desenvolvida por Ruslan Peshchuk, e sua principal característica é "A Chrome extension adding the reply feature to the web version of Microsoft Teams by quoting the selected text from the context menu".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Microsoft Teams Reply

Baixe arquivos de extensão Microsoft Teams Reply 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

                        A Chrome extension adding the reply feature to the web version of Microsoft Teams by quoting the selected text from the context menu.

Donate: https://www.patreon.com/peshrus                    

Informações Básicas da Extensão

Nome Microsoft Teams Reply Microsoft Teams Reply
ID fgdlknkkknhcdldggojiooiemajodncl
URL Oficial https://chromewebstore.google.com/detail/microsoft-teams-reply/fgdlknkkknhcdldggojiooiemajodncl
Descrição A Chrome extension adding the reply feature to the web version of Microsoft Teams by quoting the selected text from the context menu
Tamanho do Arquivo 10.09 KB
Contagem de Instalações 5,631
Versão Atual 1.1
Última Atualização 2020-10-13
Data de Publicação 2020-05-19
Classificação 3.91/5 Total de 22 Avaliações
Desenvolvedor Ruslan Peshchuk
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.patreon.com/peshrus
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Microsoft Teams Reply",
    "version": "1.1",
    "description": "A Chrome extension adding the reply feature to the web version of Microsoft Teams by quoting the selected text from the context menu",
    "manifest_version": 2,
    "permissions": [
        "contextMenus"
    ],
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "96": "icon96.png"
    },
    "background": {
        "scripts": [
            "js\/ms-teams-reply-background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/teams.microsoft.com\/*",
                "https:\/\/teams.microsoft.com.us.cas.ms\/*",
                "https:\/\/teams.microsoft.com.us.access-control.cas.ms\/*",
                "https:\/\/teams.microsoft.com.us.saml.cas.ms\/*",
                "https:\/\/teams.microsoft.com.us2.cas.ms\/*",
                "https:\/\/teams.microsoft.com.us2.access-control.cas.ms\/*",
                "https:\/\/teams.microsoft.com.us2.saml.cas.ms\/*",
                "https:\/\/teams.microsoft.com.us3.cas.ms\/*",
                "https:\/\/teams.microsoft.com.us3.access-control.cas.ms\/*",
                "https:\/\/teams.microsoft.com.us3.saml.cas.ms\/*",
                "https:\/\/teams.microsoft.com.eu1.cas.ms\/*",
                "https:\/\/teams.microsoft.com.eu1.access-control.cas.ms\/*",
                "https:\/\/teams.microsoft.com.eu1.saml.cas.ms\/*",
                "https:\/\/teams.microsoft.com.eu2.cas.ms\/*",
                "https:\/\/teams.microsoft.com.eu2.access-control.cas.ms\/*",
                "https:\/\/teams.microsoft.com.eu2.saml.cas.ms\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "js\/ms-teams-reply-content.js"
            ]
        }
    ]
}