Gmail app badge notification

Show badge notifications in the taskbar when using Gmail as an app

Vad är Gmail app badge notification?

Gmail app badge notification är en Chrome-tillägg utvecklad av Domenico Gemoli, och dess huvudfunktion är "Show badge notifications in the taskbar when using Gmail as an app".

Tilläggsskärmbilder

screenshot

Ladda ner Gmail app badge notification-förlängningens CRX-fil

Ladda ner Gmail app badge notification-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

                        Setup:

1. Install the extension
2. Add Gmail as an app. You can do so by following this guide: https://support.google.com/chrome_webstore/answer/3060053?hl=en - make sure to select the option "open as a window".
3. Open the newly installed app.

Troubleshooting:
https://github.com/aberonni/gmail-app-badge-notification#Troubleshooting                    

Grundläggande Information om Tillägg

Namn Gmail app badge notification Gmail app badge notification
ID fbaolhbfbmniffcokakochjjeccpcpkh
Officiell webbadress https://chromewebstore.google.com/detail/gmail-app-badge-notificat/fbaolhbfbmniffcokakochjjeccpcpkh
Beskrivning Show badge notifications in the taskbar when using Gmail as an app
Filstorlek 11.68 KB
Antal Installationer 7,141
Aktuell Version 1.1.0
Senast Uppdaterad 2023-12-06
Publiceringsdatum 2020-05-21
Betyg 4.81/5 Totalt 16 Betyg
Utvecklare Domenico Gemoli
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/aberonni/gmail-app-badge-notification
Hjälpsida URL https://github.com/aberonni/gmail-app-badge-notification#Troubleshooting
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gmail app badge notification",
    "version": "1.1.0",
    "manifest_version": 3,
    "description": "Show badge notifications in the taskbar when using Gmail as an app",
    "homepage_url": "https:\/\/github.com\/aberonni\/gmail-app-badge-notification",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.mail.google.com\/mail\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}