Tesse - Share Screen
This extension help you share your screen
什么是Tesse - Share Screen?
Tesse - Share Screen是由https://tesse.io开发的Chrome扩展程序,该扩展的主要功能是“This extension help you share your screen”。
扩展截图
下载Tesse - Share Screen扩展crx文件
下载Tesse - Share Screen扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension helps you to share your screen in a video call to show presentations, photos, and documents. Tesse.io allows you to start a video call, without the need to download or install anything. This extension allows you to share your screen with other participants in tesse.io call/chat session, to improve your online meeting efficiency. You can select the window/apllication you want to share. This extension was built based on open source: https://github.com/muaz-khan
扩展基本信息
名称 | Tesse - Share Screen |
ID | cgplojjghbkfimkgggajefldkpmaklll |
官方URL | https://chromewebstore.google.com/detail/tesse-share-screen/cgplojjghbkfimkgggajefldkpmaklll |
简介 | This extension help you share your screen |
文件大小 | 8.71 KB |
安装次数 | 33 |
当前版本 | 1.2 |
更新时间 | 2018-10-11 |
上架时间 | 2018-10-11 |
评分 | 5.00/5 共4次评分 |
开发者 | https://tesse.io |
电子邮箱 | [email protected] |
付费类型 | free |
帮助页面URL | https://tesse.io/tessbot |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tesse - Share Screen", "author": "Tesse, Inc.", "version": "1.2", "manifest_version": 2, "minimum_chrome_version": "34", "description": "This extension help you share your screen", "homepage_url": "https:\/\/tesse.io", "background": { "scripts": [ "background-script.js" ], "persistent": false }, "content_scripts": [ { "js": [ "content-script.js" ], "all_frames": true, "run_at": "document_end", "matches": [ "https:\/\/tesse.io\/*" ] } ], "icons": { "48": "icon.png" }, "permissions": [ "desktopCapture" ], "web_accessible_resources": [ "icon.png" ], "browser_action": { "default_icon": "icon.png" } } |