Hubgets Screen Share
Hubgets Screen share extension
Что такое Hubgets Screen Share?
Hubgets Screen Share - это расширение Chrome, разработанное https://hubgets.com, и его основная функция - "Hubgets Screen share extension".
Снимки экрана расширения
Скачать файл CRX расширения Hubgets Screen Share
Скачайте файлы расширений Hubgets Screen Share в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Enables screen sharing features in Hubgets. You will be able to share your screen with your team and other parties. Hubgets is a communication and collaboration app that makes your business more productive. Free up to 20 team members.
Основная информация о расширении
Название | Hubgets Screen Share |
ID | afbegohpenghgnldhimopeoemdapmiio |
Официальный URL | https://chromewebstore.google.com/detail/hubgets-screen-share/afbegohpenghgnldhimopeoemdapmiio |
Описание | Hubgets Screen share extension |
Размер файла | 13.76 KB |
Количество установок | 84 |
Текущая Версия | 0.0.1.3 |
Последнее Обновление | 2017-01-26 |
Дата публикации | 2017-01-26 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | https://hubgets.com |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://hubgets.com |
URL страницы политики конфиденциальности | https://www.hubgets.com/company/privacy-policy |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hubgets Screen Share", "author": "Hubgets", "version": "0.0.1.3", "manifest_version": 2, "minimum_chrome_version": "34", "description": "Hubgets Screen share extension", "homepage_url": "https:\/\/hubgets.com\/", "background": { "scripts": [ "background-script.js" ], "persistent": false }, "content_scripts": [ { "js": [ "content-script.js" ], "all_frames": true, "run_at": "document_end", "matches": [ "https:\/\/*\/*" ] } ], "page_action": { "default_icon": { "48": "icons\/pa_icon_48.png", "96": "icons\/[email protected]", "128": "icons\/pa_icon_128.png", "256": "icons\/[email protected]" } }, "icons": { "16": "icons\/favicon_16x16.png", "48": "icons\/icon_48.png", "96": "icons\/[email protected]", "128": "icons\/icon_128.png", "256": "icons\/[email protected]" }, "permissions": [ "https:\/\/*\/*", "desktopCapture", "tabs" ] } |