Custom Tab Extension
This new tab with changing wallpaper will display weather and date/time at user's current location
Что такое Custom Tab Extension?
Custom Tab Extension - это расширение Chrome, разработанное bhavyac045, и его основная функция - "This new tab with changing wallpaper will display weather and date/time at user's current location".
Снимки экрана расширения
Скачать файл CRX расширения Custom Tab Extension
Скачайте файлы расширений Custom Tab Extension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | Custom Tab Extension |
ID | fdmjinolaboakdlcnlclmnkklkfgapnd |
Официальный URL | https://chromewebstore.google.com/detail/custom-tab-extension/fdmjinolaboakdlcnlclmnkklkfgapnd |
Описание | This new tab with changing wallpaper will display weather and date/time at user's current location |
Размер файла | 702 KB |
Количество установок | 57 |
Текущая Версия | 3 |
Последнее Обновление | 2020-08-26 |
Дата публикации | 2020-05-05 |
Разработчик | bhavyac045 |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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" ] } |