SAGE2 Screen Capture
This chrome extension enables screensharing to SAGE2 walls
SAGE2 Screen Capture क्या है?
SAGE2 Screen Capture https://sage2.sagecommons.org द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This chrome extension enables screensharing to SAGE2 walls"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में SAGE2 Screen Capture एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This chrome extension is developed to be used in collaborative environments. It enables desktop sharing with large displays.
एक्सटेंशन की मूल जानकारी
नाम | SAGE2 Screen Capture |
ID | mbkfcmpjbkmmdcfocaclghbobhnjfpkk |
आधिकारिक URL | https://chromewebstore.google.com/detail/sage2-screen-capture/mbkfcmpjbkmmdcfocaclghbobhnjfpkk |
विवरण | This chrome extension enables screensharing to SAGE2 walls |
फ़ाइल का आकार | 25.17 KB |
स्थापना संख्या | 1,110 |
वर्तमान संस्करण | 2.2.0 |
अंतिम अपडेट | 2021-09-06 |
प्रकाशन तिथि | 2018-10-29 |
रेटिंग | 4.43/5 कुल 7 रेटिंग्स |
डेवलपर | https://sage2.sagecommons.org |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://sage2.sagecommons.org/ |
सहायता पृष्ठ URL | https://groups.google.com/forum/#!forum/sage2 |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "SAGE2 Screen Capture", "author": "Thomas Marrinan - Luc Renambot", "version": "2.2.0", "manifest_version": 2, "minimum_chrome_version": "36", "description": "This chrome extension enables screensharing to SAGE2 walls", "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "js": [ "content.js" ], "all_frames": true, "run_at": "document_start", "matches": [ "https:\/\/*\/*index.html", "https:\/\/*\/*sageUI.html", "https:\/\/*\/*sagePointerApp.html" ] } ], "browser_action": { "default_title": "Send content to SAGE2", "default_popup": "popup.html" }, "icons": { "48": "SAGE2_screen_capture_48.png", "128": "SAGE2_screen_capture_128.png" }, "permissions": [ "desktopCapture", "tabs", "activeTab", "contextMenus" ], "web_accessible_resources": [ "SAGE2_screen_capture_48.png", "SAGE2_screen_capture_128.png" ] } |