Meet Notifications
Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.
Apa itu Meet Notifications?
Meet Notifications adalah ekstensi Chrome yang dikembangkan oleh DevDiary, dan fitur utamanya adalah "Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Meet Notifications
Unduh file ekstensi Meet Notifications dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
--- วิธีใช้งาน --- 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. 👍
Informasi Dasar Ekstensi
Nama | |
ID | lekaeknoegncijhnchifjdnclipppcnp |
URL Resmi | https://chrome.google.com/webstore/detail/meet-notifications/lekaeknoegncijhnchifjdnclipppcnp |
Deskripsi | Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room. |
Ukuran File | 19.48 KB |
Jumlah Instalasi | 34 |
Versi Saat Ini | 0.1.5 |
Terakhir Diperbarui | 2020-06-24 |
Tanggal Publikasi | 2020-06-24 |
Penilaian | 4.00/5 Total 2 Penilaian |
Pengembang | DevDiary |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://www.facebook.com/devdiaryTH |
URL Halaman Bantuan | https://www.facebook.com/devdiaryTH |
URL Halaman Kebijakan Privasi | https://devdiaryth.github.io/Meet-Notifications-Privacy-Policy/index.html |
Bahasa yang Didukung | 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" ] } |