Screen Sharing
Capture full-screen or specific application's screen.
什么是Screen Sharing?
Screen Sharing是由https://engducate.com开发的Chrome扩展程序,该扩展的主要功能是“Capture full-screen or specific application's screen.”。
扩展截图
下载Screen Sharing扩展crx文件
下载Screen Sharing扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
To enable screen sharing on the following websites: - https://webrtc.ziotes.com/ - https://localhost:8443/ - https://engducate.com/ - https://ko.engducate.com/
扩展基本信息
名称 | Screen Sharing |
ID | aafipaghlllcbognnpmdplmpielpaepp |
官方URL | https://chromewebstore.google.com/detail/screen-sharing/aafipaghlllcbognnpmdplmpielpaepp |
简介 | Capture full-screen or specific application's screen. |
文件大小 | 5.52 KB |
安装次数 | 124 |
当前版本 | 1.4 |
更新时间 | 2018-11-28 |
上架时间 | 2018-11-27 |
评分 | 5.00/5 共1次评分 |
开发者 | https://engducate.com |
付费类型 | free |
扩展官网 | https://engducate.com/ |
支持的语言 | 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" ] } |