Meet Notifications
Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.
Co to jest Meet Notifications?
Meet Notifications to rozszerzenie Chrome opracowane przez DevDiary, a jego główną funkcją jest „Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Meet Notifications
Pobierz pliki rozszerzeń Meet Notifications w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
--- วิธีใช้งาน --- 1. คลิกที่ icon "Meet Notifications" 2. คลิกที่ switch button ให้ปุ่มเปลี่ยนสถานะเป็นสีฟ้า เพียงเท่านี้ก็สามารถใช้งาน Meet Notifications ได้แล้ว 👍 --- How to use --- 1. Click on the icon "Meet Notifications". 2. Click the switch button to change the status to blue. That's it. You can use the Meet Notifications. 👍
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | lekaeknoegncijhnchifjdnclipppcnp |
Oficjalny URL | https://chrome.google.com/webstore/detail/meet-notifications/lekaeknoegncijhnchifjdnclipppcnp |
Opis | Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room. |
Rozmiar pliku | 19.48 KB |
Liczba instalacji | 34 |
Aktualna Wersja | 0.1.5 |
Ostatnia Aktualizacja | 2020-06-24 |
Data Publikacji | 2020-06-24 |
Ocena | 4.00/5 Łącznie 2 Oceny |
Deweloper | DevDiary |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://www.facebook.com/devdiaryTH |
Adres URL Strony Pomocy | https://www.facebook.com/devdiaryTH |
Adres URL Strony Polityki Prywatności | https://devdiaryth.github.io/Meet-Notifications-Privacy-Policy/index.html |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Meet Notifications", "version": "0.1.5", "manifest_version": 2, "description": "Meet Notifications improves the Google Meet experience with \"Notification\" when the audience sent the message in the room.", "author": "Ic3berg", "content_security_policy": "default-src 'self'", "icons": { "16": "assets\/icon16.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "permissions": [ "storage" ], "options_page": "options.html", "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": { "16": "assets\/icon16.png", "48": "assets\/icon48.png", "128": "assets\/icon128.png" }, "default_popup": "popup.html", "default_title": "Meet Notifications" }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "content.js", "controller.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ "content.js", "controller.js" ] } |