Gmail++
Improves the user experience of Gmail
Was ist Gmail++?
Gmail++ ist eine Chrome-Erweiterung, die von Michael Pfaff entwickelt wurde, und ihr Hauptmerkmal ist "Improves the user experience of Gmail".
Erweiterungsscreenshots
Gmail++-Erweiterungs-CRX-Datei herunterladen
Laden Sie Gmail++-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
Improves the user experience of Gmail. Features: - Modifies the refresh button (the one above the threads list, not beside the address bar) to also check external POP3 accounts. - Checks external POP3 accounts on page load. - Checks external POP3 accounts at a configurable interval.
Grundlegende Informationen zur Erweiterung
Name | Gmail++ |
ID | jcbfnofllipbepnolhgcdloichjbcena |
Offizielle URL | https://chromewebstore.google.com/detail/gmail++/jcbfnofllipbepnolhgcdloichjbcena |
Beschreibung | Improves the user experience of Gmail |
Dateigröße | 9.16 KB |
Installationsanzahl | 182 |
Aktuelle Version | 1.1.0 |
Letztes Update | 2022-10-12 |
Veröffentlichungsdatum | 2022-10-09 |
Entwickler | Michael Pfaff |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Gmail++", "version": "1.1.0", "description": "Improves the user experience of Gmail", "icons": { "48": "icons\/icon-48.png", "64": "icons\/icon-64.png" }, "permissions": [ "storage" ], "host_permissions": [ "*:\/\/mail.google.com\/" ], "content_scripts": [ { "matches": [ "*:\/\/mail.google.com\/*" ], "js": [ "lib.js", "main.js" ], "run_at": "document_end" } ], "options_ui": { "page": "options.html", "browser_style": true }, "browser_specific_settings": { "gecko": { "id": "[email protected]" } } } |