Badge Notifications for MS Teams PWA
A tool to add a pending notification app badge (tested on Chrome OS)
Что такое Badge Notifications for MS Teams PWA?
Badge Notifications for MS Teams PWA - это расширение Chrome, разработанное iamacarpet, и его основная функция - "A tool to add a pending notification app badge (tested on Chrome OS)".
Снимки экрана расширения
Скачать файл CRX расширения Badge Notifications for MS Teams PWA
Скачайте файлы расширений Badge Notifications for MS Teams PWA в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Show badge notifications in the dock/shelf when using MS Teams as an app (PWA).
PWA badge notifications are supported on Windows, macOS and ChromeOS:
https://chromestatus.com/feature/6068482055602176 Основная информация о расширении
| Название | |
| ID | opcgcmanfocenaiippbgachholecmakm |
| Официальный URL | https://chromewebstore.google.com/detail/badge-notifications-for-m/opcgcmanfocenaiippbgachholecmakm |
| Описание | A tool to add a pending notification app badge (tested on Chrome OS) |
| Размер файла | 18.21 KB |
| Количество установок | 194 |
| Текущая Версия | 2.6 |
| Последнее Обновление | 2024-02-19 |
| Дата публикации | 2023-07-14 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | iamacarpet |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/a1comms/chromeos-apps-for-office365/tree/master/teams-chromeos-notifications |
| Поддерживаемые языки | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Badge Notifications for MS Teams PWA",
"version": "2.6",
"description": "A tool to add a pending notification app badge (tested on Chrome OS)",
"content_scripts": [
{
"matches": [
"https:\/\/*.teams.microsoft.com\/*",
"https:\/\/*.teams.microsoft.com.mcas.ms\/*",
"https:\/\/*.teams.microsoft.us.mcas-gov.us\/*",
"https:\/\/*.teams.microsoft.us\/*"
],
"js": [
"content-script.js"
]
}
],
"icons": {
"16": "images\/teamsIcon.png",
"128": "images\/teamsIcon.png"
}
} | |