Google Chat Mark as Read
Adds button to quickly mark all Google Chat Room notifications as read
Vad är Google Chat Mark as Read?
Google Chat Mark as Read är en Chrome-tillägg utvecklad av https://colbywoods.dev, och dess huvudfunktion är "Adds button to quickly mark all Google Chat Room notifications as read".
Tilläggsskärmbilder
Ladda ner Google Chat Mark as Read-förlängningens CRX-fil
Ladda ner Google Chat Mark as Read-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
Google Chat Extension for Mail and Chat App to mark all rooms as read. Click the button and wait while the extension iterates through all rooms with unread messages and clears the notifications for you. Save yourself some time and skip marking read by hand.
Grundläggande Information om Tillägg
Namn | Google Chat Mark as Read |
ID | mfoklnlmddfdpfmcdniicgacnoklginh |
Officiell webbadress | https://chromewebstore.google.com/detail/google-chat-mark-as-read/mfoklnlmddfdpfmcdniicgacnoklginh |
Beskrivning | Adds button to quickly mark all Google Chat Room notifications as read |
Filstorlek | 12.43 KB |
Antal Installationer | 1,000 |
Aktuell Version | 1.0.0 |
Senast Uppdaterad | 2023-03-20 |
Publiceringsdatum | 2021-07-16 |
Betyg | 3.00/5 Totalt 2 Betyg |
Utvecklare | https://colbywoods.dev |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Google Chat Mark as Read", "version": "1.0.0", "description": "Adds button to quickly mark all Google Chat Room notifications as read", "content_scripts": [ { "matches": [ "https:\/\/chat.google.com\/*", "https:\/\/mail.google.com\/chat\/*" ], "all_frames": true, "js": [ "content.js" ], "run_at": "document_end" } ] } |