Gmail condensed style

Gmail condensed style

Τι είναι το Gmail condensed style;

Το Gmail condensed style είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Yury Ershov, και η κύρια λειτουργία του είναι "Gmail condensed style".

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

screenshot

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

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

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

                        Less white space -> more information on the page!

* Since version 2.0 there are settings!

(if the extension fails to start, try disabling and re-enabling it on the chrome://extensions page)

* Remove useless paddings for the most of the page elements
* Make buttons look as active clickable elements
* Add border around email compose text area
* Highlight the email row in the list on hover/focus
* Narrow down labels tree when always expanded; Widen it when hover-expanded
* Less space for top/search bar
* Disable animations
* Multi inbox section labels clearer design                    

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

Όνομα Gmail condensed style Gmail condensed style
ID emgpbaognndhnclaogipmikglnhhbhcg
Επίσημο URL https://chrome.google.com/webstore/detail/gmail-condensed-style/emgpbaognndhnclaogipmikglnhhbhcg
Περιγραφή Gmail condensed style
Μέγεθος Αρχείου 20.49 KB
Αριθμός Εγκαταστάσεων 108
Τρέχουσα Έκδοση 2.0.11
Τελευταία Ενημέρωση 2020-04-26
Ημερομηνία Δημοσίευσης 2020-04-26
Αξιολόγηση 5.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Yury Ershov
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Gmail condensed style",
    "short_name": "Gmail condensed style",
    "version": "2.0.11",
    "description": "Gmail condensed style",
    "permissions": [
        "activeTab",
        "tabs",
        "storage",
        "https:\/\/mail.google.com\/*"
    ],
    "web_accessible_resources": [
        "style.css"
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "browser_action": {
        "default_popup": "options.html",
        "default_title": "Gmail condensed options"
    },
    "background": {
        "scripts": [
            "eventpage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "exclude_globs": [
                "https:\/\/mail.google.com\/*features=-Sapinto*",
                "https:\/\/mail.google.com\/*features=*,-Sapinto*",
                "https:\/\/mail.google.com\/*sapinto=0*"
            ],
            "all_frames": false,
            "js": [
                "gen.js",
                "chrome.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "exclude_globs": [
                "https:\/\/mail.google.com\/*features=-Sapinto*",
                "https:\/\/mail.google.com\/*features=*,-Sapinto*",
                "https:\/\/mail.google.com\/*sapinto=0*"
            ],
            "all_frames": false,
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}