Gmail Classic
Revert my gmail
Gmail Classic là gì?
Gmail Classic là một tiện ích mở rộng Chrome được phát triển bởi epper.marshall, và tính năng chính của nó là "Revert my gmail".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Gmail Classic
Tải xuống các tệp mở rộng Gmail Classic dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | flkjieldopkkipfldndimbfmlolahlfd |
URL Chính Thức | https://chrome.google.com/webstore/detail/gmail-classic/flkjieldopkkipfldndimbfmlolahlfd |
Mô tả | Revert my gmail |
Kích Thước Tệp | 270 KB |
Số Lần Cài Đặt | 337 |
Phiên Bản Hiện Tại | 1.3 |
Cập Nhật Lần Cuối | 2018-10-01 |
Ngày Phát Hành | 2018-10-01 |
Đánh Giá | 2.11/5 Tổng số 9 Đánh Giá |
Nhà Phát Triển | epper.marshall |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/depperm/classicGmail |
URL Trang Trợ Giúp | https://github.com/depperm/classicGmail |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } |