Gmail++

Improves the user experience of Gmail

Τι είναι το Gmail++;

Το Gmail++ είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Michael Pfaff, και η κύρια λειτουργία του είναι "Improves the user experience of Gmail".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Gmail++

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

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

                        Improves the user experience of Gmail.

Features:
- Modifies the refresh button (the one above the threads list, not beside the address bar) to also check external POP3 accounts.
- Checks external POP3 accounts on page load.
- Checks external POP3 accounts at a configurable interval.                    

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

Όνομα Gmail++ Gmail++
ID jcbfnofllipbepnolhgcdloichjbcena
Επίσημο URL https://chromewebstore.google.com/detail/gmail++/jcbfnofllipbepnolhgcdloichjbcena
Περιγραφή Improves the user experience of Gmail
Μέγεθος Αρχείου 9.16 KB
Αριθμός Εγκαταστάσεων 182
Τρέχουσα Έκδοση 1.1.0
Τελευταία Ενημέρωση 2022-10-12
Ημερομηνία Δημοσίευσης 2022-10-09
Προγραμματιστής Michael Pfaff
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Gmail++",
    "version": "1.1.0",
    "description": "Improves the user experience of Gmail",
    "icons": {
        "48": "icons\/icon-48.png",
        "64": "icons\/icon-64.png"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "*:\/\/mail.google.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "lib.js",
                "main.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "browser_style": true
    },
    "browser_specific_settings": {
        "gecko": {
            "id": "[email protected]"
        }
    }
}