Z GMail Theme
Change GMail for business logo
Was ist Z GMail Theme?
Z GMail Theme ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Change GMail for business logo".
Erweiterungsscreenshots
Z GMail Theme-Erweiterungs-CRX-Datei herunterladen
Laden Sie Z GMail Theme-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | jnkjjnfifbdcmcchpjkblkfbpkhioael |
| Offizielle URL | https://chromewebstore.google.com/detail/z-gmail-theme/jnkjjnfifbdcmcchpjkblkfbpkhioael |
| Beschreibung | Change GMail for business logo |
| Dateigröße | 12.83 KB |
| Installationsanzahl | 15 |
| Aktuelle Version | 0.3 |
| Letztes Update | 2018-02-27 |
| Veröffentlichungsdatum | 2018-02-27 |
| Bewertung | 3.00/5 Insgesamt 2 Bewertungen |
| Entwickler | Unknown |
| Zahlungsart | free |
| Unterstützte Sprachen | 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
} | |