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™은(는) Jacob "kurtextrem" Groß에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shows the mail count of the conversation next to the scrollbar in Gmail™."입니다.

확장 프로그램 스크린샷

screenshot

Message Counter for Gmail™ 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
    ]
}