Gmail Classic
Revert my gmail
Was ist Gmail Classic?
Gmail Classic ist eine Chrome-Erweiterung, die von epper.marshall entwickelt wurde, und ihr Hauptmerkmal ist "Revert my gmail".
Erweiterungsscreenshots
Gmail Classic-Erweiterungs-CRX-Datei herunterladen
Laden Sie Gmail Classic-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
A css injector to revert some of the new gmail styles back to buttons. Features you can selectively revert: -compose button (you can even choose to change the color) -icons in the left column by the folder names -buttons along the top -inbox shadow hover -tabs You will need to refresh gmail after loading this extension.
Grundlegende Informationen zur Erweiterung
Name | |
ID | flkjieldopkkipfldndimbfmlolahlfd |
Offizielle URL | https://chrome.google.com/webstore/detail/gmail-classic/flkjieldopkkipfldndimbfmlolahlfd |
Beschreibung | Revert my gmail |
Dateigröße | 270 KB |
Installationsanzahl | 337 |
Aktuelle Version | 1.3 |
Letztes Update | 2018-10-01 |
Veröffentlichungsdatum | 2018-10-01 |
Bewertung | 2.11/5 Insgesamt 9 Bewertungen |
Entwickler | epper.marshall |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/depperm/classicGmail |
Hilfeseite URL | https://github.com/depperm/classicGmail |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Gmail Classic", "version": "1.3", "description": "Revert my gmail", "manifest_version": 2, "browser_action": { "default_popup": "options.html", "default_title": "Classic Gmail Options", "default_icon": { "19": "images\/icon19.png", "38": "images\/icon38.png" } }, "permissions": [ "storage", "activeTab" ], "web_accessible_resources": [ "classic.js", "shadow.css", "buttons.css", "compose.css", "lefticons.css", "tabs.css", "search.css" ], "background": { "scripts": [ "jquery-3.3.1.min.js", "jscolor.js" ] }, "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/mail\/u\/0*" ], "js": [ "jquery-3.3.1.min.js", "classic.js" ], "run_at": "document_start" } ] } |