Meet Notifications
Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.
Vad är Meet Notifications?
Meet Notifications är en Chrome-tillägg utvecklad av DevDiary, och dess huvudfunktion är "Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room.".
Tilläggsskärmbilder
Ladda ner Meet Notifications-förlängningens CRX-fil
Ladda ner Meet Notifications-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
--- วิธีใช้งาน --- 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. 👍
Grundläggande Information om Tillägg
Namn | |
ID | lekaeknoegncijhnchifjdnclipppcnp |
Officiell webbadress | https://chrome.google.com/webstore/detail/meet-notifications/lekaeknoegncijhnchifjdnclipppcnp |
Beskrivning | Meet Notifications improves the Google Meet experience with "Notification" when the audience sent the message in the room. |
Filstorlek | 19.48 KB |
Antal Installationer | 34 |
Aktuell Version | 0.1.5 |
Senast Uppdaterad | 2020-06-24 |
Publiceringsdatum | 2020-06-24 |
Betyg | 4.00/5 Totalt 2 Betyg |
Utvecklare | DevDiary |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://www.facebook.com/devdiaryTH |
Hjälpsida URL | https://www.facebook.com/devdiaryTH |
URL till Sekretesspolicy Sidan | https://devdiaryth.github.io/Meet-Notifications-Privacy-Policy/index.html |
Stödda Språk | 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" ] } |