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

Cos'è Microsoft Teams Reply?

Microsoft Teams Reply è un'estensione di Chrome sviluppata da Ruslan Peshchuk, e la sua funzione principale è "A Chrome extension adding the reply feature to the web version of Microsoft Teams by quoting the selected text from the context menu".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Microsoft Teams Reply

Scarica i file di estensione Microsoft Teams Reply in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Microsoft Teams Reply Microsoft Teams Reply
ID fgdlknkkknhcdldggojiooiemajodncl
URL Ufficiale https://chromewebstore.google.com/detail/microsoft-teams-reply/fgdlknkkknhcdldggojiooiemajodncl
Descrizione A Chrome extension adding the reply feature to the web version of Microsoft Teams by quoting the selected text from the context menu
Dimensione del File 10.09 KB
Conteggio Installazioni 5,631
Versione Corrente 1.1
Ultimo Aggiornamento 2020-10-13
Data di Pubblicazione 2020-05-19
Valutazione 3.91/5 Totale 22 Valutazioni
Sviluppatore Ruslan Peshchuk
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://www.patreon.com/peshrus
Lingue Supportate 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"
            ]
        }
    ]
}