Google Chat Mark as Read

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

什麼是Google Chat Mark as Read?

Google Chat Mark as Read是由https://colbywoods.dev開發的Chrome擴展程式,該擴展的主要功能是“Adds button to quickly mark all Google Chat Room notifications as read”。

擴展截圖

screenshot

下載Google Chat Mark as Read擴展crx文件

下載Google Chat Mark as Read擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Google Chat Mark as Read Google Chat Mark as Read
ID mfoklnlmddfdpfmcdniicgacnoklginh
官方網址 https://chromewebstore.google.com/detail/google-chat-mark-as-read/mfoklnlmddfdpfmcdniicgacnoklginh
簡介 Adds button to quickly mark all Google Chat Room notifications as read
檔案大小 12.43 KB
安裝次數 1,000
目前版本 1.0.0
更新時間 2023-03-20
上架時間 2021-07-16
評分 3.00/5 共 2 次評分
開發者 https://colbywoods.dev
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
        }
    ]
}