Google Meet Grid View

Adds a toggle to use a grid layout in Google Meets

Что такое Google Meet Grid View?

Google Meet Grid View - это расширение Chrome, разработанное Chris Gamble, и его основная функция - "Adds a toggle to use a grid layout in Google Meets".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Google Meet Grid View

Скачайте файлы расширений Google Meet Grid View в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extension adds a button to the top right bar (next to chat & participant list) to enable grid-view in Google Meets. Grid view gives every participant an equal sized video for use in meetings without a primary speaker (such as working from home silent meetings).

This extension forcibly loads every participant's video when grid view is enabled and may cause performance issues in extremely large meetings.

Includes a variety of options to enhance your meeting: include your own video, highlight who is speaking, and hide participants without video!

Privacy Policy
This extension does not track any user data, and therefore does not have a detailed privacy policy. If this is insufficient please email [email protected]                    

Основная информация о расширении

Название Google Meet Grid View Google Meet Grid View
ID kklailfgofogmmdlhgmjgenehkjoioip
Официальный URL https://chrome.google.com/webstore/detail/google-meet-grid-view/kklailfgofogmmdlhgmjgenehkjoioip
Описание Adds a toggle to use a grid layout in Google Meets
Размер файла 34.25 KB
Количество установок 2,000,000
Текущая Версия 1.37.0
Последнее Обновление 2020-06-17
Дата публикации 2020-06-17
Рейтинг 2.24/5 Всего 696 оценок
Разработчик Chris Gamble
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/Fugiman/google-meet-grid-view
URL страницы помощи https://github.com/Fugiman/google-meet-grid-view/issues
URL страницы политики конфиденциальности https://github.com/Fugiman/google-meet-grid-view
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Meet Grid View",
    "description": "Adds a toggle to use a grid layout in Google Meets",
    "version": "1.37.0",
    "author": "Chris Gamble",
    "homepage_url": "https:\/\/github.com\/Fugiman\/google-meet-grid-view",
    "icons": {
        "24": "icon24.png",
        "36": "icon36.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "24": "icon24.png",
            "36": "icon36.png",
            "48": "icon48.png"
        },
        "default_popup": "popup.html",
        "default_title": "Google Meet Grid View"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "browser-polyfill.js",
                "content.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "grid.user.js"
    ]
}