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 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 फ़ाइल डाउनलोड करें
crx प्रारूप में Microsoft Teams Reply एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } ] } |