Google Chat Mark as Read

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

Co to jest Google Chat Mark as Read?

Google Chat Mark as Read to rozszerzenie Chrome opracowane przez https://colbywoods.dev, a jego główną funkcją jest „Adds button to quickly mark all Google Chat Room notifications as read”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Google Chat Mark as Read

Pobierz pliki rozszerzeń Google Chat Mark as Read w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Google Chat Mark as Read Google Chat Mark as Read
ID mfoklnlmddfdpfmcdniicgacnoklginh
Oficjalny URL https://chromewebstore.google.com/detail/google-chat-mark-as-read/mfoklnlmddfdpfmcdniicgacnoklginh
Opis Adds button to quickly mark all Google Chat Room notifications as read
Rozmiar pliku 12.43 KB
Liczba instalacji 1,000
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2023-03-20
Data Publikacji 2021-07-16
Ocena 3.00/5 Łącznie 2 Oceny
Deweloper https://colbywoods.dev
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}