Gmail Classic
Revert my gmail
什么是Gmail Classic?
Gmail Classic是由epper.marshall开发的Chrome扩展程序,该扩展的主要功能是“Revert my gmail”。
扩展截图
下载Gmail Classic扩展crx文件
下载Gmail Classic扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| ID | flkjieldopkkipfldndimbfmlolahlfd |
| 官方URL | https://chrome.google.com/webstore/detail/gmail-classic/flkjieldopkkipfldndimbfmlolahlfd |
| 简介 | Revert my gmail |
| 文件大小 | 270 KB |
| 安装次数 | 337 |
| 当前版本 | 1.3 |
| 更新时间 | 2018-10-01 |
| 上架时间 | 2018-10-01 |
| 评分 | 2.11/5 共9次评分 |
| 开发者 | epper.marshall |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/depperm/classicGmail |
| 帮助页面URL | https://github.com/depperm/classicGmail |
| 支持的语言 | 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"
}
]
} | |