Meet Chat Notifications
Meet Chat Notifications
Vad är Meet Chat Notifications?
Meet Chat Notifications är en Chrome-tillägg utvecklad av ExpressTech, och dess huvudfunktion är "Meet Chat Notifications".
Tilläggsskärmbilder
Ladda ner Meet Chat Notifications-förlängningens CRX-fil
Ladda ner Meet Chat 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
This extension is used to show a notification for when someone uses the chat in Google Meet.
Grundläggande Information om Tillägg
Namn | Meet Chat Notifications |
ID | pjhpmbjmhmajhgjhkojockbjjapppdbe |
Officiell webbadress | https://chromewebstore.google.com/detail/meet-chat-notifications/pjhpmbjmhmajhgjhkojockbjjapppdbe |
Beskrivning | Meet Chat Notifications |
Filstorlek | 45.63 KB |
Antal Installationer | 8,630 |
Aktuell Version | 2.1.0 |
Senast Uppdaterad | 2021-06-22 |
Publiceringsdatum | 2020-05-18 |
Betyg | 3.60/5 Totalt 25 Betyg |
Utvecklare | ExpressTech |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://mycodding.com/ |
Hjälpsida URL | https://mycodding.com/privacy-policy/ |
Stödda Språk | 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" ] } ] } |