Auto Expander for Gmail™

Automatically expands too long mails in Gmail™.

Qu'est-ce que Auto Expander for Gmail™ ?

Auto Expander for Gmail™ est une extension Chrome développée par Jacob "kurtextrem" Groß, et sa fonction principale est "Automatically expands too long mails in Gmail™.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Auto Expander for Gmail™

Téléchargez les fichiers d'extension Auto Expander for Gmail™ au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Auto Expander for Gmail™ Auto Expander for Gmail™
ID ilkidmijegomodfeplfdekbfglhaahba
URL Officiel https://chromewebstore.google.com/detail/auto-expander-for-gmail/ilkidmijegomodfeplfdekbfglhaahba
Description Automatically expands too long mails in Gmail™.
Taille du Fichier 10.39 KB
Nombre d'Installations 523
Version Actuelle 1.5.0.5
Dernière Mise à Jour 2023-12-03
Date de Publication 2019-05-25
Évaluation 2.67/5 Total 9 Évaluations
Développeur Jacob "kurtextrem" Groß
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/kurtextrem/Gmail-Auto-Expander
URL de la Page d'Aide https://github.com/kurtextrem/Gmail-Auto-Expander/issues/
URL de la Page de Politique de Confidentialité https://www.kurtextrem.de/chrome/PRIVACY.html
Langues Prises en Charge 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\/*"
    ]
}