Gmail Classic Theme
An extension for reverting Gmail to the Classic Theme
Τι είναι το Gmail Classic Theme;
Το Gmail Classic Theme είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Andrew Powell @shellscape, και η κύρια λειτουργία του είναι "An extension for reverting Gmail to the Classic Theme".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Gmail Classic Theme
Λήψη αρχείων επέκτασης Gmail Classic Theme σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
What Google giveth, Google taketh away. Google has recently forced a UI update upon the users of Gmail. Unfortunately, not everyone thinks it's an improvement. Installing this extension will revert the UI of Gmail to the previous "Classic" theme. The theme is based on the actual CSS from the previous UI and makes no additions or subjective changes. This extension is open source. You can review or contribute to the code for this extension here: https://github.com/shellscape/gmail-classic. Release info and change-log can be found here: https://github.com/shellscape/gmail-classic/releases.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | cokholnilkppcchlfepienmlbafkjplj |
Επίσημο URL | https://chrome.google.com/webstore/detail/gmail-classic-theme/cokholnilkppcchlfepienmlbafkjplj |
Περιγραφή | An extension for reverting Gmail to the Classic Theme |
Μέγεθος Αρχείου | 17.38 KB |
Αριθμός Εγκαταστάσεων | 994 |
Τρέχουσα Έκδοση | 0.1.1 |
Τελευταία Ενημέρωση | 2018-11-19 |
Ημερομηνία Δημοσίευσης | 2018-11-19 |
Αξιολόγηση | 4.00/5 Συνολικά 7 Αξιολογήσεις |
Προγραμματιστής | Andrew Powell @shellscape |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/shellscape/gmail-classic |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/shellscape/gmail-classic |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "name": "Gmail Classic Theme", "short_name": "Gmail Classic Theme", "version": "0.1.1", "description": "An extension for reverting Gmail to the Classic Theme", "homepage_url": "http:\/\/github.com\/shellscape\/gmail-classic", "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "author": "Andrew Powell (shellscape)", "manifest_version": 2, "browser_action": { "default_icon": { "19": "\/assets\/16.png", "38": "\/assets\/48.png" } }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "css": [ "gmail.css" ] } ], "icons": { "16": "\/assets\/16.png", "32": "\/assets\/32.png", "48": "\/assets\/48.png", "64": "\/assets\/64.png", "128": "\/assets\/128.png" }, "permissions": [ "activeTab", "*:\/\/mail.google.com\/" ] } |