Share to Teams
Share any web page from your browser with your Teams
Share to Teams क्या है?
Share to Teams João Ferreira द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Share any web page from your browser with your Teams"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Share to Teams एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This will allow you to share a link directly to Teams channel without switching context. You no longer need to switch applications to share relevant web sites with your co-workers.
एक्सटेंशन की मूल जानकारी
नाम | Share to Teams |
ID | mncdedgmeogkaeicgbgpbnnejjebphof |
आधिकारिक URL | https://chromewebstore.google.com/detail/share-to-teams/mncdedgmeogkaeicgbgpbnnejjebphof |
विवरण | Share any web page from your browser with your Teams |
फ़ाइल का आकार | 4.27 KB |
स्थापना संख्या | 1,161 |
वर्तमान संस्करण | 1.1 |
अंतिम अपडेट | 2020-05-25 |
प्रकाशन तिथि | 2020-05-25 |
रेटिंग | 5.00/5 कुल 3 रेटिंग्स |
डेवलपर | João Ferreira |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://handsontek.net |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Share to Teams", "version": "1.1", "manifest_version": 2, "description": "Share any web page from your browser with your Teams", "homepage_url": "https:\/\/teams.handsontek.net", "background": { "scripts": [ "background.js" ], "persistent": true }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+S", "mac": "MacCtrl+Shift+S" }, "description": "Share any web page from your browser with your Teams" } }, "browser_action": { "default_title": "Share to Teams", "default_icon": "sharetoteams.png" }, "permissions": [ "https:\/\/*\/*", "http:\/\/*\/*", "tabs" ] } |