Google Chat Mark as Read
Adds button to quickly mark all Google Chat Room notifications as read
Wat is Google Chat Mark as Read?
Google Chat Mark as Read is een Chrome-extensie ontwikkeld door https://colbywoods.dev, en de belangrijkste functie is "Adds button to quickly mark all Google Chat Room notifications as read".
Extensie Screenshots
Download het CRX-bestand van de extensie Google Chat Mark as Read
Download Google Chat Mark as Read-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Google Chat Mark as Read |
ID | mfoklnlmddfdpfmcdniicgacnoklginh |
Officiële URL | https://chromewebstore.google.com/detail/google-chat-mark-as-read/mfoklnlmddfdpfmcdniicgacnoklginh |
Beschrijving | Adds button to quickly mark all Google Chat Room notifications as read |
Bestandsgrootte | 12.43 KB |
Aantal Installaties | 1,000 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2023-03-20 |
Publicatiedatum | 2021-07-16 |
Beoordeling | 3.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | https://colbywoods.dev |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } ] } |