Tesse - Share Screen
This extension help you share your screen
Что такое Tesse - Share Screen?
Tesse - Share Screen - это расширение Chrome, разработанное https://tesse.io, и его основная функция - "This extension help you share your screen".
Снимки экрана расширения
Скачать файл CRX расширения Tesse - Share Screen
Скачайте файлы расширений 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" } } |