Custom Tab Extension
This new tab with changing wallpaper will display weather and date/time at user's current location
Co to jest Custom Tab Extension?
Custom Tab Extension to rozszerzenie Chrome opracowane przez bhavyac045, a jego główną funkcją jest „This new tab with changing wallpaper will display weather and date/time at user's current location”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Custom Tab Extension
Pobierz pliki rozszerzeń Custom Tab Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | fdmjinolaboakdlcnlclmnkklkfgapnd |
| Oficjalny URL | https://chromewebstore.google.com/detail/custom-tab-extension/fdmjinolaboakdlcnlclmnkklkfgapnd |
| Opis | This new tab with changing wallpaper will display weather and date/time at user's current location |
| Rozmiar pliku | 702 KB |
| Liczba instalacji | 57 |
| Aktualna Wersja | 3 |
| Ostatnia Aktualizacja | 2020-08-26 |
| Data Publikacji | 2020-05-05 |
| Deweloper | bhavyac045 |
| [email protected] | |
| Typ Płatności | free |
| Obsługiwane Języki | 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"
]
} | |