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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://colbywoods.dev และคุณลักษณะหลักของมันคือ "Adds button to quickly mark all Google Chat Room notifications as read"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Chat Mark as Read

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
        }
    ]
}