Gmail Classic
Revert my gmail
What is Gmail Classic?
Gmail Classic is a Chrome extension developed by epper.marshall, and its main feature is "Revert my gmail".
Extension Screenshots
Download Gmail Classic Extension CRX File
Download Gmail Classic extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | flkjieldopkkipfldndimbfmlolahlfd |
Official URL | https://chrome.google.com/webstore/detail/gmail-classic/flkjieldopkkipfldndimbfmlolahlfd |
Description | Revert my gmail |
File Size | 270 KB |
Installation Count | 337 |
Current Version | 1.3 |
Last Updated | 2018-10-01 |
Publish Date | 2018-10-01 |
Rating | 2.11/5 Total 9 Ratings |
Developer | epper.marshall |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/depperm/classicGmail |
Help Page URL | https://github.com/depperm/classicGmail |
Supported Languages | 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" } ] } |