Auto Expander for Gmail™

Automatically expands too long mails in Gmail™.

Cos'è Auto Expander for Gmail™?

Auto Expander for Gmail™ è un'estensione di Chrome sviluppata da Jacob "kurtextrem" Groß, e la sua funzione principale è "Automatically expands too long mails in Gmail™.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Auto Expander for Gmail™

Scarica i file di estensione Auto Expander for Gmail™ in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Auto Expander for Gmail™ Auto Expander for Gmail™
ID ilkidmijegomodfeplfdekbfglhaahba
URL Ufficiale https://chromewebstore.google.com/detail/auto-expander-for-gmail/ilkidmijegomodfeplfdekbfglhaahba
Descrizione Automatically expands too long mails in Gmail™.
Dimensione del File 10.39 KB
Conteggio Installazioni 523
Versione Corrente 1.5.0.5
Ultimo Aggiornamento 2023-12-03
Data di Pubblicazione 2019-05-25
Valutazione 2.67/5 Totale 9 Valutazioni
Sviluppatore Jacob "kurtextrem" Groß
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/kurtextrem/Gmail-Auto-Expander
URL della Pagina di Aiuto https://github.com/kurtextrem/Gmail-Auto-Expander/issues/
URL della Pagina della Politica sulla Privacy https://www.kurtextrem.de/chrome/PRIVACY.html
Lingue Supportate 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\/*"
    ]
}