Custom Tab Extension
This new tab with changing wallpaper will display weather and date/time at user's current location
What is Custom Tab Extension?
Custom Tab Extension is a Chrome extension developed by bhavyac045, and its main feature is "This new tab with changing wallpaper will display weather and date/time at user's current location".
Extension Screenshots
Download Custom Tab Extension Extension CRX File
Download Custom Tab Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Custom Tab Extension |
ID | fdmjinolaboakdlcnlclmnkklkfgapnd |
Official URL | https://chromewebstore.google.com/detail/custom-tab-extension/fdmjinolaboakdlcnlclmnkklkfgapnd |
Description | This new tab with changing wallpaper will display weather and date/time at user's current location |
File Size | 702 KB |
Installation Count | 57 |
Current Version | 3 |
Last Updated | 2020-08-26 |
Publish Date | 2020-05-05 |
Developer | bhavyac045 |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |