Auto Expander for Gmail™
Automatically expands too long mails in Gmail™.
What is Auto Expander for Gmail™?
Auto Expander for Gmail™ is a Chrome extension developed by Jacob "kurtextrem" Groß, and its main feature is "Automatically expands too long mails in Gmail™.".
Extension Screenshots
Download Auto Expander for Gmail™ Extension CRX File
Download Auto Expander for Gmail™ extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Auto Expander for Gmail™ |
ID | ilkidmijegomodfeplfdekbfglhaahba |
Official URL | https://chromewebstore.google.com/detail/auto-expander-for-gmail/ilkidmijegomodfeplfdekbfglhaahba |
Description | Automatically expands too long mails in Gmail™. |
File Size | 10.39 KB |
Installation Count | 523 |
Current Version | 1.5.0.5 |
Last Updated | 2023-12-03 |
Publish Date | 2019-05-25 |
Rating | 2.67/5 Total 9 Ratings |
Developer | Jacob "kurtextrem" Groß |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/kurtextrem/Gmail-Auto-Expander |
Help Page URL | https://github.com/kurtextrem/Gmail-Auto-Expander/issues/ |
Privacy Policy Page URL | https://www.kurtextrem.de/chrome/PRIVACY.html |
Supported Languages | 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\/*" ] } |