Google Chat Mark as Read

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

What is Google Chat Mark as Read?

Google Chat Mark as Read is a Chrome extension developed by https://colbywoods.dev, and its main feature is "Adds button to quickly mark all Google Chat Room notifications as read".

Extension Screenshots

screenshot

Download Google Chat Mark as Read Extension CRX File

Download Google Chat Mark as Read extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Google Chat Mark as Read Google Chat Mark as Read
ID mfoklnlmddfdpfmcdniicgacnoklginh
Official URL https://chromewebstore.google.com/detail/google-chat-mark-as-read/mfoklnlmddfdpfmcdniicgacnoklginh
Description Adds button to quickly mark all Google Chat Room notifications as read
File Size 12.43 KB
Installation Count 1,000
Current Version 1.0.0
Last Updated 2023-03-20
Publish Date 2021-07-16
Rating 3.00/5 Total 2 Ratings
Developer https://colbywoods.dev
Email [email protected]
Payment Type free
Supported Languages 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"
        }
    ]
}