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
Qu'est-ce que Microsoft Teams Reply ?
Microsoft Teams Reply est une extension Chrome développée par Ruslan Peshchuk, et sa fonction principale est "A Chrome extension adding the reply feature to the web version of Microsoft Teams by quoting the selected text from the context menu".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Microsoft Teams Reply
Téléchargez les fichiers d'extension Microsoft Teams Reply au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Microsoft Teams Reply |
ID | fgdlknkkknhcdldggojiooiemajodncl |
URL Officiel | https://chromewebstore.google.com/detail/microsoft-teams-reply/fgdlknkkknhcdldggojiooiemajodncl |
Description | A Chrome extension adding the reply feature to the web version of Microsoft Teams by quoting the selected text from the context menu |
Taille du Fichier | 10.09 KB |
Nombre d'Installations | 5,631 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2020-10-13 |
Date de Publication | 2020-05-19 |
Évaluation | 3.91/5 Total 22 Évaluations |
Développeur | Ruslan Peshchuk |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.patreon.com/peshrus |
Langues Prises en Charge | 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" ] } ] } |