Recent Meeting Codes
Adds buttons to launch recently used Meeting Codes to the Google Meet page for Google Classroom
Что такое Recent Meeting Codes?
Recent Meeting Codes - это расширение Chrome, разработанное https://johnriv.github.io/recent-meeting-codes, и его основная функция - "Adds buttons to launch recently used Meeting Codes to the Google Meet page for Google Classroom".
Снимки экрана расширения
Скачать файл CRX расширения Recent Meeting Codes
Скачайте файлы расширений Recent Meeting Codes в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
For Google Meet users with .edu accounts, this adds a list of buttons of recently used meeting codes to the Google Meet page to easily launch Google Meets with those meeting codes. For students & teachers whose classes use Google Meet instead of Google Classroom Meet Links, this allows them 1-click access to join their classes instead of having to type the same meeting code every day.
Основная информация о расширении
Название | Recent Meeting Codes |
ID | jblnhjdigaepgkbclpggccmhcmnpkghf |
Официальный URL | https://chromewebstore.google.com/detail/recent-meeting-codes/jblnhjdigaepgkbclpggccmhcmnpkghf |
Описание | Adds buttons to launch recently used Meeting Codes to the Google Meet page for Google Classroom |
Размер файла | 17.88 KB |
Количество установок | 322 |
Текущая Версия | 2.0.0 |
Последнее Обновление | 2021-02-22 |
Дата публикации | 2021-01-04 |
Рейтинг | 2.00/5 Всего 4 оценок |
Разработчик | https://johnriv.github.io/recent-meeting-codes |
Электронная почта | [email protected] |
Тип оплаты | free |
URL страницы помощи | https://github.com/JohnRiv/recent-meeting-codes/issues |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Recent Meeting Codes", "version": "2.0.0", "description": "Adds buttons to launch recently used Meeting Codes to the Google Meet page for Google Classroom", "manifest_version": 3, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/", "https:\/\/meet.google.com\/?*" ], "css": [ "recentMeetingCodes.css" ], "js": [ "recentMeetingCodes.js" ] } ], "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } } |