Custom Tab Extension
This new tab with changing wallpaper will display weather and date/time at user's current location
Cos'è Custom Tab Extension?
Custom Tab Extension è un'estensione di Chrome sviluppata da bhavyac045, e la sua funzione principale è "This new tab with changing wallpaper will display weather and date/time at user's current location".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Custom Tab Extension
Scarica i file di estensione Custom Tab Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | fdmjinolaboakdlcnlclmnkklkfgapnd |
| URL Ufficiale | https://chromewebstore.google.com/detail/custom-tab-extension/fdmjinolaboakdlcnlclmnkklkfgapnd |
| Descrizione | This new tab with changing wallpaper will display weather and date/time at user's current location |
| Dimensione del File | 702 KB |
| Conteggio Installazioni | 57 |
| Versione Corrente | 3 |
| Ultimo Aggiornamento | 2020-08-26 |
| Data di Pubblicazione | 2020-05-05 |
| Sviluppatore | bhavyac045 |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
]
} | |