Meet Chat Notifications
Meet Chat Notifications
Τι είναι το Meet Chat Notifications;
Το Meet Chat Notifications είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον ExpressTech, και η κύρια λειτουργία του είναι "Meet Chat Notifications".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Meet Chat Notifications
Λήψη αρχείων επέκτασης Meet Chat Notifications σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension is used to show a notification for when someone uses the chat in Google Meet.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Meet Chat Notifications |
ID | pjhpmbjmhmajhgjhkojockbjjapppdbe |
Επίσημο URL | https://chromewebstore.google.com/detail/meet-chat-notifications/pjhpmbjmhmajhgjhkojockbjjapppdbe |
Περιγραφή | Meet Chat Notifications |
Μέγεθος Αρχείου | 45.63 KB |
Αριθμός Εγκαταστάσεων | 8,630 |
Τρέχουσα Έκδοση | 2.1.0 |
Τελευταία Ενημέρωση | 2021-06-22 |
Ημερομηνία Δημοσίευσης | 2020-05-18 |
Αξιολόγηση | 3.60/5 Συνολικά 25 Αξιολογήσεις |
Προγραμματιστής | ExpressTech |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://mycodding.com/ |
Διεύθυνση URL της Σελίδας Βοήθειας | https://mycodding.com/privacy-policy/ |
Υποστηριζόμενες Γλώσσες | en,en-US,pt-BR,pt-PT |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "2.1.0", "name": "Meet Chat Notifications", "description": "Meet Chat Notifications", "author": "SmolBren", "permissions": [ "notifications" ], "icons": { "16": "icon16.png", "24": "icon24.png", "36": "icon36.png", "48": "icon48.png", "128": "icon128.png" }, "browser_action": { "default_icon": { "15": "icon16.png", "24": "icon24.png", "36": "icon36.png", "48": "icon48.png" }, "default_title": "Meet Chat Notification", "default_popup": "index.html" }, "default_locale": "en", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "content.js" ] } ] } |