Z GMail Theme
Change GMail for business logo
什么是Z GMail Theme?
Z GMail Theme是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Change GMail for business logo”。
扩展截图
下载Z GMail Theme扩展crx文件
下载Z GMail Theme扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
If you work for Z and would prefer the logo in GMail would have a transparent background.
If you'd like a company themed background image, here is a link:
https://d16psrqvoeay1v.cloudfront.net/z-background.png
Source: https://github.com/marsmining/z-mail-theme 扩展基本信息
| 名称 | |
| ID | jnkjjnfifbdcmcchpjkblkfbpkhioael |
| 官方URL | https://chromewebstore.google.com/detail/z-gmail-theme/jnkjjnfifbdcmcchpjkblkfbpkhioael |
| 简介 | Change GMail for business logo |
| 文件大小 | 12.83 KB |
| 安装次数 | 15 |
| 当前版本 | 0.3 |
| 更新时间 | 2018-02-27 |
| 上架时间 | 2018-02-27 |
| 评分 | 3.00/5 共2次评分 |
| 开发者 | Unknown |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Z GMail Theme",
"version": "0.3",
"description": "Change GMail for business logo",
"icons": {
"128": "img\/icon_128.png",
"38": "img\/icon_38.png",
"19": "img\/icon_19.png",
"16": "img\/icon_16.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/mail.google.com\/*"
],
"run_at": "document_idle",
"js": [
"z.js"
]
}
],
"background": {
"persistent": false,
"scripts": [
"bg.js"
]
},
"page_action": {
"default_icon": {
"128": "img\/icon_128.png",
"38": "img\/icon_38.png",
"19": "img\/icon_19.png",
"16": "img\/icon_16.png"
},
"default_title": "Z GMail Theme",
"default_popup": "popup.html"
},
"permissions": [
"https:\/\/mail.google.com\/*",
"tabs",
"storage"
],
"manifest_version": 2
} | |