Z GMail Theme
Change GMail for business logo
Vad är Z GMail Theme?
Z GMail Theme är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "Change GMail for business logo".
Tilläggsskärmbilder
Ladda ner Z GMail Theme-förlängningens CRX-fil
Ladda ner Z GMail Theme-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | jnkjjnfifbdcmcchpjkblkfbpkhioael |
| Officiell webbadress | https://chromewebstore.google.com/detail/z-gmail-theme/jnkjjnfifbdcmcchpjkblkfbpkhioael |
| Beskrivning | Change GMail for business logo |
| Filstorlek | 12.83 KB |
| Antal Installationer | 15 |
| Aktuell Version | 0.3 |
| Senast Uppdaterad | 2018-02-27 |
| Publiceringsdatum | 2018-02-27 |
| Betyg | 3.00/5 Totalt 2 Betyg |
| Utvecklare | Unknown |
| Betalningssätt | free |
| Stödda Språk | 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
} | |