Custom Tab Extension
This new tab with changing wallpaper will display weather and date/time at user's current location
Was ist Custom Tab Extension?
Custom Tab Extension ist eine Chrome-Erweiterung, die von bhavyac045 entwickelt wurde, und ihr Hauptmerkmal ist "This new tab with changing wallpaper will display weather and date/time at user's current location".
Erweiterungsscreenshots
Custom Tab Extension-Erweiterungs-CRX-Datei herunterladen
Laden Sie Custom Tab Extension-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
This customized new tab with changing wallpaper will display weather and date/time at user's current location. Link to Covid-19 alerts and Gmail are added advantage. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | fdmjinolaboakdlcnlclmnkklkfgapnd |
| Offizielle URL | https://chromewebstore.google.com/detail/custom-tab-extension/fdmjinolaboakdlcnlclmnkklkfgapnd |
| Beschreibung | This new tab with changing wallpaper will display weather and date/time at user's current location |
| Dateigröße | 702 KB |
| Installationsanzahl | 57 |
| Aktuelle Version | 3 |
| Letztes Update | 2020-08-26 |
| Veröffentlichungsdatum | 2020-05-05 |
| Entwickler | bhavyac045 |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Custom Tab Extension",
"description": "This new tab with changing wallpaper will display weather and date\/time at user's current location",
"version": "3",
"manifest_version": 2,
"background": {
"scripts": [
"background.js",
"content.js"
],
"persistent": false
},
"content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
"chrome_url_overrides": {
"newtab": "options.html"
},
"browser_action": {
"default_title": "Custom Tab"
},
"permissions": [
"activeTab",
"geolocation",
"identity",
"identity.email"
]
} | |