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
Τι είναι το Microsoft Teams Reply;
Το Microsoft Teams Reply είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Ruslan Peshchuk, και η κύρια λειτουργία του είναι "A Chrome extension adding the reply feature to the web version of Microsoft Teams by quoting the selected text from the context menu".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Microsoft Teams Reply
Λήψη αρχείων επέκτασης Microsoft Teams Reply σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | Microsoft Teams Reply |
ID | fgdlknkkknhcdldggojiooiemajodncl |
Επίσημο URL | https://chromewebstore.google.com/detail/microsoft-teams-reply/fgdlknkkknhcdldggojiooiemajodncl |
Περιγραφή | A Chrome extension adding the reply feature to the web version of Microsoft Teams by quoting the selected text from the context menu |
Μέγεθος Αρχείου | 10.09 KB |
Αριθμός Εγκαταστάσεων | 5,631 |
Τρέχουσα Έκδοση | 1.1 |
Τελευταία Ενημέρωση | 2020-10-13 |
Ημερομηνία Δημοσίευσης | 2020-05-19 |
Αξιολόγηση | 3.91/5 Συνολικά 22 Αξιολογήσεις |
Προγραμματιστής | Ruslan Peshchuk |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://www.patreon.com/peshrus |
Υποστηριζόμενες Γλώσσες | 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" ] } ] } |