Gmail app badge notification
Show badge notifications in the taskbar when using Gmail as an app
Was ist Gmail app badge notification?
Gmail app badge notification ist eine Chrome-Erweiterung, die von Domenico Gemoli entwickelt wurde, und ihr Hauptmerkmal ist "Show badge notifications in the taskbar when using Gmail as an app".
Erweiterungsscreenshots
Gmail app badge notification-Erweiterungs-CRX-Datei herunterladen
Laden Sie Gmail app badge notification-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | fbaolhbfbmniffcokakochjjeccpcpkh |
| Offizielle URL | https://chromewebstore.google.com/detail/gmail-app-badge-notificat/fbaolhbfbmniffcokakochjjeccpcpkh |
| Beschreibung | Show badge notifications in the taskbar when using Gmail as an app |
| Dateigröße | 11.68 KB |
| Installationsanzahl | 7,141 |
| Aktuelle Version | 1.1.0 |
| Letztes Update | 2023-12-06 |
| Veröffentlichungsdatum | 2020-05-21 |
| Bewertung | 4.81/5 Insgesamt 16 Bewertungen |
| Entwickler | Domenico Gemoli |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/aberonni/gmail-app-badge-notification |
| Hilfeseite URL | https://github.com/aberonni/gmail-app-badge-notification#Troubleshooting |
| Unterstützte Sprachen | 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"
]
}
]
} | |