Meet Notifications
Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.
Meet Notificationsคืออะไร?
Meet Notifications เป็นส่วนขยายของ Chrome ที่พัฒนาโดย DevDiary และคุณลักษณะหลักของมันคือ "Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Meet Notifications
ดาวน์โหลดไฟล์ส่วนขยาย Meet Notifications ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
--- วิธีใช้งาน --- 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. 👍
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | lekaeknoegncijhnchifjdnclipppcnp |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/meet-notifications/lekaeknoegncijhnchifjdnclipppcnp |
คำอธิบาย | Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room. |
ขนาดไฟล์ | 19.48 KB |
จำนวนการติดตั้ง | 34 |
เวอร์ชันปัจจุบัน | 0.1.5 |
อัปเดตครั้งล่าสุด | 2020-06-24 |
วันที่เผยแพร่ | 2020-06-24 |
คะแนน | 4.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | DevDiary |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.facebook.com/devdiaryTH |
URL หน้าช่วยเหลือ | https://www.facebook.com/devdiaryTH |
URL หน้านโยบายความเป็นส่วนตัว | https://devdiaryth.github.io/Meet-Notifications-Privacy-Policy/index.html |
ภาษาที่รองรับ | 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" ] } |