SAGE2 Screen Capture
This chrome extension enables screensharing to SAGE2 walls
SAGE2 Screen Captureคืออะไร?
SAGE2 Screen Capture เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://sage2.sagecommons.org และคุณลักษณะหลักของมันคือ "This chrome extension enables screensharing to SAGE2 walls"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SAGE2 Screen Capture
ดาวน์โหลดไฟล์ส่วนขยาย SAGE2 Screen Capture ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" ] } |