Ubiq
Ubiq chrome extension for https://present.goubiq.com/*.
Что такое Ubiq?
Ubiq - это расширение Chrome, разработанное https://present.goubiq.com, и его основная функция - "Ubiq chrome extension for https://present.goubiq.com/*.".
Снимки экрана расширения
Скачать файл CRX расширения Ubiq
Скачайте файлы расширений Ubiq в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Ubiq allows your conference rooms to be cable-free. No more HDMI, VGA, Dongles in the conference room again. Anyone can walk into your conference room, and start a cable-free presentation in seconds. This is the Ubiq client app for chrome extension. Using this extension you should now be able to connect to a Ubiq device and start screen-sharing instantly. Основная информация о расширении
| Название | |
| ID | dbdibdbbenjkpmdjnannkgdehgegcopo |
| Официальный URL | https://chromewebstore.google.com/detail/ubiq/dbdibdbbenjkpmdjnannkgdehgegcopo |
| Описание | Ubiq chrome extension for https://present.goubiq.com/*. |
| Размер файла | 5.64 KB |
| Количество установок | 10,000 |
| Текущая Версия | 0.4 |
| Последнее Обновление | 2022-05-19 |
| Дата публикации | 2019-12-14 |
| Рейтинг | 5.00/5 Всего 2 оценок |
| Разработчик | https://present.goubiq.com |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| URL страницы политики конфиденциальности | https://www.iubenda.com/privacy-policy/80072039 |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Ubiq",
"description": "Ubiq chrome extension for https:\/\/present.goubiq.com\/*.",
"homepage_url": "https:\/\/www.goubiq.com\/",
"version": "0.4",
"background": {
"scripts": [
"capturedesktop.min.js"
],
"persistent": true
},
"browser_action": {
"default_icon": "icon.png",
"default_title": "Ubiq"
},
"icons": {
"48": "icon.png"
},
"permissions": [
"desktopCapture",
"activeTab",
"tabs",
"https:\/\/present.goubiq.com\/*"
],
"web_accessible_resources": [
"icon.png"
],
"content_scripts": [
{
"matches": [
"https:\/\/present.goubiq.com\/*"
],
"js": [
"communication.min.js"
],
"all_frames": true,
"run_at": "document_end"
}
],
"externally_connectable": {
"matches": [
"https:\/\/present.goubiq.com\/*"
]
}
} | |