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" ] } |