Auto Expander for Gmail™
Automatically expands too long mails in Gmail™.
Was ist Auto Expander for Gmail™?
Auto Expander for Gmail™ ist eine Chrome-Erweiterung, die von Jacob "kurtextrem" Groß entwickelt wurde, und ihr Hauptmerkmal ist "Automatically expands too long mails in Gmail™.".
Erweiterungsscreenshots
Auto Expander for Gmail™-Erweiterungs-CRX-Datei herunterladen
Laden Sie Auto Expander for 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
Do you often receive too long mails and you're tired of scrolling to the bottom to open the full mail?
"[Message clipped] View entire message" is your foe?
Look no further! This extension automatically expands the mails in Gmail™ for you (also works in the new re-designed Gmail!).
Update: v1.5.0.3 - fixed various issues (not expanding properly etc)
Permissions:
Rights to read from Gmail in order to expand the mail. No data collected.
Code is open source: https://github.com/kurtextrem/Gmail-Auto-Expander
Icon by Boyan Kostov. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ilkidmijegomodfeplfdekbfglhaahba |
| Offizielle URL | https://chromewebstore.google.com/detail/auto-expander-for-gmail/ilkidmijegomodfeplfdekbfglhaahba |
| Beschreibung | Automatically expands too long mails in Gmail™. |
| Dateigröße | 10.39 KB |
| Installationsanzahl | 523 |
| Aktuelle Version | 1.5.0.5 |
| Letztes Update | 2023-12-03 |
| Veröffentlichungsdatum | 2019-05-25 |
| Bewertung | 2.67/5 Insgesamt 9 Bewertungen |
| Entwickler | Jacob "kurtextrem" Groß |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/kurtextrem/Gmail-Auto-Expander |
| Hilfeseite URL | https://github.com/kurtextrem/Gmail-Auto-Expander/issues/ |
| URL der Datenschutzrichtlinien-Seite | https://www.kurtextrem.de/chrome/PRIVACY.html |
| Unterstützte Sprachen | de,en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_extName__",
"version": "1.5.0.5",
"manifest_version": 3,
"description": "__MSG_extDesc__",
"default_locale": "en",
"icons": {
"128": "icon-128.png",
"16": "icon-128.png",
"48": "icon-128.png"
},
"author": "Jacob \u201ekurtextrem\" Gro\u00df",
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/mail.google.com\/*"
],
"js": [
"contentscript.js"
],
"run_at": "document_idle",
"all_frames": false
}
],
"minimum_chrome_version": "88",
"host_permissions": [
"*:\/\/mail.google.com\/*"
]
} | |