Custom Tab Extension
This new tab with changing wallpaper will display weather and date/time at user's current location
Vad är Custom Tab Extension?
Custom Tab Extension är en Chrome-tillägg utvecklad av bhavyac045, och dess huvudfunktion är "This new tab with changing wallpaper will display weather and date/time at user's current location".
Tilläggsskärmbilder
Ladda ner Custom Tab Extension-förlängningens CRX-fil
Ladda ner Custom Tab Extension-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
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. Grundläggande Information om Tillägg
| Namn | |
| ID | fdmjinolaboakdlcnlclmnkklkfgapnd |
| Officiell webbadress | https://chromewebstore.google.com/detail/custom-tab-extension/fdmjinolaboakdlcnlclmnkklkfgapnd |
| Beskrivning | This new tab with changing wallpaper will display weather and date/time at user's current location |
| Filstorlek | 702 KB |
| Antal Installationer | 57 |
| Aktuell Version | 3 |
| Senast Uppdaterad | 2020-08-26 |
| Publiceringsdatum | 2020-05-05 |
| Utvecklare | bhavyac045 |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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"
]
} | |