Individual Fullscreen for Google Meet
This is an unofficial extension that allows You to make any video source fullscreen in a google meeting.
Что такое Individual Fullscreen for Google Meet?
Individual Fullscreen for Google Meet - это расширение Chrome, разработанное angeloevan.ane, и его основная функция - "This is an unofficial extension that allows You to make any video source fullscreen in a google meeting.".
Снимки экрана расширения
Скачать файл CRX расширения Individual Fullscreen for Google Meet
Скачайте файлы расширений Individual Fullscreen for Google Meet в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension basically enables a fullscreen button when a video source is added on a google meeting, so You can maximize it and pay attention to every detail is being shared with You 😉 Основная информация о расширении
| Название | |
| ID | mkcelnnddmnidbakjahnjchdnapdbjgn |
| Официальный URL | https://chromewebstore.google.com/detail/individual-fullscreen-for/mkcelnnddmnidbakjahnjchdnapdbjgn |
| Описание | This is an unofficial extension that allows You to make any video source fullscreen in a google meeting. |
| Размер файла | 11.21 KB |
| Количество установок | 359 |
| Текущая Версия | 1.0.5 |
| Последнее Обновление | 2024-02-25 |
| Дата публикации | 2022-11-29 |
| Рейтинг | 5.00/5 Всего 7 оценок |
| Разработчик | angeloevan.ane |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/angeloevangelista/google-meet-fullscreen |
| URL страницы помощи | https://github.com/angeloevangelista/google-meet-fullscreen/issues |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Individual Fullscreen for Google Meet",
"description": "This is an unofficial extension that allows You to make any video source fullscreen in a google meeting.",
"homepage_url": "https:\/\/github.com\/angeloevangelista\/google-meet-fullscreen",
"version": "1.0.5",
"manifest_version": 3,
"icons": {
"16": ".\/icons\/16.png",
"48": ".\/icons\/48.png"
},
"content_scripts": [
{
"run_at": "document_end",
"js": [
"enable_fullscreen.js"
],
"matches": [
"https:\/\/meet.google.com\/*"
]
}
],
"permissions": []
} | |