Multiparty-Meeting Screen Sharing
This extension allows you to share your screen in the multiparty web-meeting you are in.
Multiparty-Meeting Screen Sharing là gì?
Multiparty-Meeting Screen Sharing là một tiện ích mở rộng Chrome được phát triển bởi https://akademia.no, và tính năng chính của nó là "This extension allows you to share your screen in the multiparty web-meeting you are in.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Multiparty-Meeting Screen Sharing
Tải xuống các tệp mở rộng Multiparty-Meeting Screen Sharing dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Open source extension for sharing your screen in web meetings.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Multiparty-Meeting Screen Sharing |
ID | fckajcjdaabdgnbdcmhhebdglogjfodi |
URL Chính Thức | https://chromewebstore.google.com/detail/multiparty-meeting-screen/fckajcjdaabdgnbdcmhhebdglogjfodi |
Mô tả | This extension allows you to share your screen in the multiparty web-meeting you are in. |
Kích Thước Tệp | 11.19 KB |
Số Lần Cài Đặt | 95 |
Phiên Bản Hiện Tại | 0.1.1 |
Cập Nhật Lần Cuối | 2018-09-18 |
Ngày Phát Hành | 2018-09-18 |
Nhà Phát Triển | https://akademia.no |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/havfo/multiparty-meeting-extension |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Multiparty-Meeting Screen Sharing", "short_name": "Screen Sharing", "version": "0.1.1", "manifest_version": 2, "description": "This extension allows you to share your screen in the multiparty web-meeting you are in.", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "desktopCapture", "tabs", "https:\/\/*\/*" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ "content.js" ], "all_frames": true, "run_at": "document_end" } ] } |