Message Counter for Gmail™

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

Message Counter for Gmail™ là gì?

Message Counter for Gmail™ là một tiện ích mở rộng Chrome được phát triển bởi Jacob "kurtextrem" Groß, và tính năng chính của nó là "Shows the mail count of the conversation next to the scrollbar in Gmail™.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Message Counter for Gmail™

Tải xuống các tệp mở rộng Message Counter for Gmail™ dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Message Counter for Gmail™ Message Counter for Gmail™
ID cmdjfmokkblaapkclnhnefeokpkmkkkl
URL Chính Thức https://chromewebstore.google.com/detail/message-counter-for-gmail/cmdjfmokkblaapkclnhnefeokpkmkkkl
Mô tả Shows the mail count of the conversation next to the scrollbar in Gmail™.
Kích Thước Tệp 7.09 KB
Số Lần Cài Đặt 201
Phiên Bản Hiện Tại 1.3.4
Cập Nhật Lần Cuối 2023-12-03
Ngày Phát Hành 2018-05-17
Nhà Phát Triển Jacob "kurtextrem" Groß
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/kurtextrem/Gmail-Mail-Counter
URL Trang Trợ Giúp https://github.com/kurtextrem/Gmail-Mail-Counter/issues
URL Trang Chính Sách Bảo Mật https://www.kurtextrem.de/chrome/PRIVACY.html
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}