Meet Notifications
Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.
Meet Notifications là gì?
Meet Notifications là một tiện ích mở rộng Chrome được phát triển bởi DevDiary, và tính năng chính của nó là "Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Meet Notifications
Tải xuống các tệp mở rộng Meet Notifications dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
--- วิธีใช้งาน --- 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. 👍
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | lekaeknoegncijhnchifjdnclipppcnp |
URL Chính Thức | https://chrome.google.com/webstore/detail/meet-notifications/lekaeknoegncijhnchifjdnclipppcnp |
Mô tả | Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room. |
Kích Thước Tệp | 19.48 KB |
Số Lần Cài Đặt | 34 |
Phiên Bản Hiện Tại | 0.1.5 |
Cập Nhật Lần Cuối | 2020-06-24 |
Ngày Phát Hành | 2020-06-24 |
Đánh Giá | 4.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | DevDiary |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://www.facebook.com/devdiaryTH |
URL Trang Trợ Giúp | https://www.facebook.com/devdiaryTH |
URL Trang Chính Sách Bảo Mật | https://devdiaryth.github.io/Meet-Notifications-Privacy-Policy/index.html |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |