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

Was ist Microsoft Teams Reply?

Microsoft Teams Reply ist eine Chrome-Erweiterung, die von Ruslan Peshchuk entwickelt wurde, und ihr Hauptmerkmal ist "A Chrome extension adding the reply feature to the web version of Microsoft Teams by quoting the selected text from the context menu".

Erweiterungsscreenshots

screenshot

Microsoft Teams Reply-Erweiterungs-CRX-Datei herunterladen

Laden Sie Microsoft Teams Reply-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

                        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                    

Grundlegende Informationen zur Erweiterung

Name Microsoft Teams Reply Microsoft Teams Reply
ID fgdlknkkknhcdldggojiooiemajodncl
Offizielle URL https://chromewebstore.google.com/detail/microsoft-teams-reply/fgdlknkkknhcdldggojiooiemajodncl
Beschreibung A Chrome extension adding the reply feature to the web version of Microsoft Teams by quoting the selected text from the context menu
Dateigröße 10.09 KB
Installationsanzahl 5,631
Aktuelle Version 1.1
Letztes Update 2020-10-13
Veröffentlichungsdatum 2020-05-19
Bewertung 3.91/5 Insgesamt 22 Bewertungen
Entwickler Ruslan Peshchuk
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://www.patreon.com/peshrus
Unterstützte Sprachen 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"
            ]
        }
    ]
}