Message Counter for Gmail™

Shows the mail count of the conversation next to the scrollbar in Gmail™.

Message Counter for Gmail™คืออะไร?

Message Counter for Gmail™ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jacob "kurtextrem" Groß และคุณลักษณะหลักของมันคือ "Shows the mail count of the conversation next to the scrollbar in Gmail™."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Message Counter for Gmail™

ดาวน์โหลดไฟล์ส่วนขยาย Message Counter for Gmail™ ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Adds the amount of mails of the currently viewed conversation next to the scrollbar in Gmail.


This extension is open-source: https://github.com/kurtextrem/Gmail-Mail-Counter


Icon by Abhishek Pipalva.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Message Counter for Gmail™ Message Counter for Gmail™
ID cmdjfmokkblaapkclnhnefeokpkmkkkl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/message-counter-for-gmail/cmdjfmokkblaapkclnhnefeokpkmkkkl
คำอธิบาย Shows the mail count of the conversation next to the scrollbar in Gmail™.
ขนาดไฟล์ 7.09 KB
จำนวนการติดตั้ง 201
เวอร์ชันปัจจุบัน 1.3.4
อัปเดตครั้งล่าสุด 2023-12-03
วันที่เผยแพร่ 2018-05-17
ผู้พัฒนา Jacob "kurtextrem" Groß
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/kurtextrem/Gmail-Mail-Counter
URL หน้าช่วยเหลือ https://github.com/kurtextrem/Gmail-Mail-Counter/issues
URL หน้านโยบายความเป็นส่วนตัว https://www.kurtextrem.de/chrome/PRIVACY.html
ภาษาที่รองรับ de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "version": "1.3.4",
    "manifest_version": 3,
    "description": "__MSG_extDesc__",
    "default_locale": "en",
    "icons": {
        "128": "img\/icon-128.png",
        "16": "img\/icon-128.png",
        "48": "img\/icon-128.png"
    },
    "author": "Jacob \u201ekurtextrem\" Gro\u00df",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "css": [
                "content.css"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "minimum_chrome_version": "88",
    "host_permissions": [
        "*:\/\/mail.google.com\/*"
    ]
}