Z GMail Theme
Change GMail for business logo
What is Z GMail Theme?
Z GMail Theme is a Chrome extension developed by Unknown, and its main feature is "Change GMail for business logo".
Extension Screenshots
Download Z GMail Theme Extension CRX File
Download Z GMail Theme 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
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
Extension Basic Information
Name | Z GMail Theme |
ID | jnkjjnfifbdcmcchpjkblkfbpkhioael |
Official URL | https://chromewebstore.google.com/detail/z-gmail-theme/jnkjjnfifbdcmcchpjkblkfbpkhioael |
Description | Change GMail for business logo |
File Size | 12.83 KB |
Installation Count | 15 |
Current Version | 0.3 |
Last Updated | 2018-02-27 |
Publish Date | 2018-02-27 |
Rating | 3.00/5 Total 2 Ratings |
Developer | Unknown |
Payment Type | free |
Supported Languages | 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 } |