Screen Sharing
Capture full-screen or specific application's screen.
Screen Sharing là gì?
Screen Sharing là một tiện ích mở rộng Chrome được phát triển bởi https://engducate.com, và tính năng chính của nó là "Capture full-screen or specific application's screen.".
Ả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 Screen Sharing
Tải xuống các tệp mở rộng 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
To enable screen sharing on the following websites: - https://webrtc.ziotes.com/ - https://localhost:8443/ - https://engducate.com/ - https://ko.engducate.com/
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Screen Sharing |
ID | aafipaghlllcbognnpmdplmpielpaepp |
URL Chính Thức | https://chromewebstore.google.com/detail/screen-sharing/aafipaghlllcbognnpmdplmpielpaepp |
Mô tả | Capture full-screen or specific application's screen. |
Kích Thước Tệp | 5.52 KB |
Số Lần Cài Đặt | 124 |
Phiên Bản Hiện Tại | 1.4 |
Cập Nhật Lần Cuối | 2018-11-28 |
Ngày Phát Hành | 2018-11-27 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | https://engducate.com |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://engducate.com/ |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Screen Sharing", "author": "Emmanuel Joseph Perion", "version": "1.4", "manifest_version": 2, "minimum_chrome_version": "34", "description": "Capture full-screen or specific application's screen.", "homepage_url": "https:\/\/webrtc.ziotes.com\/", "background": { "scripts": [ "background-script.js" ], "persistent": false }, "content_scripts": [ { "js": [ "content-script.js" ], "all_frames": true, "run_at": "document_end", "matches": [ "https:\/\/webrtc.ziotes.com\/*", "https:\/\/localhost\/*", "https:\/\/engducate.com\/*", "https:\/\/ko.engducate.com\/*" ] } ], "icons": { "48": "icon.png" }, "permissions": [ "desktopCapture" ], "web_accessible_resources": [ "icon.png" ] } |