Google Chat Mark as Read

Adds button to quickly mark all Google Chat Room notifications as read

Cos'è Google Chat Mark as Read?

Google Chat Mark as Read è un'estensione di Chrome sviluppata da https://colbywoods.dev, e la sua funzione principale è "Adds button to quickly mark all Google Chat Room notifications as read".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Google Chat Mark as Read

Scarica i file di estensione Google Chat Mark as Read in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Google Chat Mark as Read Google Chat Mark as Read
ID mfoklnlmddfdpfmcdniicgacnoklginh
URL Ufficiale https://chromewebstore.google.com/detail/google-chat-mark-as-read/mfoklnlmddfdpfmcdniicgacnoklginh
Descrizione Adds button to quickly mark all Google Chat Room notifications as read
Dimensione del File 12.43 KB
Conteggio Installazioni 1,000
Versione Corrente 1.0.0
Ultimo Aggiornamento 2023-03-20
Data di Pubblicazione 2021-07-16
Valutazione 3.00/5 Totale 2 Valutazioni
Sviluppatore https://colbywoods.dev
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}