Custom Tab Extension
This new tab with changing wallpaper will display weather and date/time at user's current location
¿Qué es Custom Tab Extension?
Custom Tab Extension es una extensión de Chrome desarrollada por bhavyac045, y su función principal es "This new tab with changing wallpaper will display weather and date/time at user's current location".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Custom Tab Extension
Descarga archivos de extensión Custom Tab Extension en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Custom Tab Extension |
ID | fdmjinolaboakdlcnlclmnkklkfgapnd |
URL Oficial | https://chromewebstore.google.com/detail/custom-tab-extension/fdmjinolaboakdlcnlclmnkklkfgapnd |
Descripción | This new tab with changing wallpaper will display weather and date/time at user's current location |
Tamaño del Archivo | 702 KB |
Cantidad de Instalaciones | 57 |
Versión Actual | 3 |
Última Actualización | 2020-08-26 |
Fecha de Publicación | 2020-05-05 |
Desarrollador | bhavyac045 |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" ] } |