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是由bhavyac045開發的Chrome擴展程式,該擴展的主要功能是“This new tab with changing wallpaper will display weather and date/time at user's current location”。
擴展截圖
下載Custom Tab Extension擴展crx文件
下載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 |
官方網址 | 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" ] } |