Auto Expander for Gmail™

Automatically expands too long mails in Gmail™.

Τι είναι το Auto Expander for Gmail™;

Το Auto Expander for Gmail™ είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Jacob "kurtextrem" Groß, και η κύρια λειτουργία του είναι "Automatically expands too long mails in Gmail™.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Auto Expander for Gmail™

Λήψη αρχείων επέκτασης Auto Expander for Gmail™ σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Auto Expander for Gmail™ Auto Expander for Gmail™
ID ilkidmijegomodfeplfdekbfglhaahba
Επίσημο URL https://chromewebstore.google.com/detail/auto-expander-for-gmail/ilkidmijegomodfeplfdekbfglhaahba
Περιγραφή Automatically expands too long mails in Gmail™.
Μέγεθος Αρχείου 10.39 KB
Αριθμός Εγκαταστάσεων 523
Τρέχουσα Έκδοση 1.5.0.5
Τελευταία Ενημέρωση 2023-12-03
Ημερομηνία Δημοσίευσης 2019-05-25
Αξιολόγηση 2.67/5 Συνολικά 9 Αξιολογήσεις
Προγραμματιστής Jacob "kurtextrem" Groß
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/kurtextrem/Gmail-Auto-Expander
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/kurtextrem/Gmail-Auto-Expander/issues/
URL της Σελίδας Πολιτικής Απορρήτου https://www.kurtextrem.de/chrome/PRIVACY.html
Υποστηριζόμενες Γλώσσες 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\/*"
    ]
}