Google Chat Mark as Read

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

Was ist Google Chat Mark as Read?

Google Chat Mark as Read ist eine Chrome-Erweiterung, die von https://colbywoods.dev entwickelt wurde, und ihr Hauptmerkmal ist "Adds button to quickly mark all Google Chat Room notifications as read".

Erweiterungsscreenshots

screenshot

Google Chat Mark as Read-Erweiterungs-CRX-Datei herunterladen

Laden Sie Google Chat Mark as Read-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Google Chat Mark as Read Google Chat Mark as Read
ID mfoklnlmddfdpfmcdniicgacnoklginh
Offizielle URL https://chromewebstore.google.com/detail/google-chat-mark-as-read/mfoklnlmddfdpfmcdniicgacnoklginh
Beschreibung Adds button to quickly mark all Google Chat Room notifications as read
Dateigröße 12.43 KB
Installationsanzahl 1,000
Aktuelle Version 1.0.0
Letztes Update 2023-03-20
Veröffentlichungsdatum 2021-07-16
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler https://colbywoods.dev
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}