Message Counter for Gmail™

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

Vad är Message Counter for Gmail™?

Message Counter for Gmail™ är en Chrome-tillägg utvecklad av Jacob "kurtextrem" Groß, och dess huvudfunktion är "Shows the mail count of the conversation next to the scrollbar in Gmail™.".

Tilläggsskärmbilder

screenshot

Ladda ner Message Counter for Gmail™-förlängningens CRX-fil

Ladda ner Message Counter for Gmail™-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Message Counter for Gmail™ Message Counter for Gmail™
ID cmdjfmokkblaapkclnhnefeokpkmkkkl
Officiell webbadress https://chromewebstore.google.com/detail/message-counter-for-gmail/cmdjfmokkblaapkclnhnefeokpkmkkkl
Beskrivning Shows the mail count of the conversation next to the scrollbar in Gmail™.
Filstorlek 7.09 KB
Antal Installationer 201
Aktuell Version 1.3.4
Senast Uppdaterad 2023-12-03
Publiceringsdatum 2018-05-17
Utvecklare Jacob "kurtextrem" Groß
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/kurtextrem/Gmail-Mail-Counter
Hjälpsida URL https://github.com/kurtextrem/Gmail-Mail-Counter/issues
URL till Sekretesspolicy Sidan https://www.kurtextrem.de/chrome/PRIVACY.html
Stödda Språk 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\/*"
    ]
}