Clocks and Weather
Displays current time and weather in multiple cities when opening New Tab.
Cos'è Clocks and Weather?
Clocks and Weather è un'estensione di Chrome sviluppata da Mark F., e la sua funzione principale è "Displays current time and weather in multiple cities when opening New Tab.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Clocks and Weather
Scarica i file di estensione Clocks and Weather in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
A personal project. This is a simple extension for displaying current time and weather in multiple cities when opening New Tab. This Chrome Extension uses OpenWeather's Free API to get weather data. Due to restrictions with the Free API, only a limited number of API requests can be made using this Extension's default API Key. To enable adding more than one location, please sign up to OpenWeather and get your own API Key. This extension does NOT gather or share any personal information or your OpenWeather API key. It only uses basic google analytics. 0.0.1.3 Added Feedback button :) Bug Fixes and Enhancements.
Informazioni di Base sull'Estensione
Nome | Clocks and Weather |
ID | kabhmccgldggnkpaibmdchefkipimiki |
URL Ufficiale | https://chromewebstore.google.com/detail/clocks-and-weather/kabhmccgldggnkpaibmdchefkipimiki |
Descrizione | Displays current time and weather in multiple cities when opening New Tab. |
Dimensione del File | 4.73 MB |
Conteggio Installazioni | 21 |
Versione Corrente | 0.0.1.3 |
Ultimo Aggiornamento | 2020-12-26 |
Data di Pubblicazione | 2020-06-14 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Mark F. |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Clocks and Weather", "version": "0.0.1.3", "manifest_version": 2, "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com https:\/\/www.google-analytics.com https:\/\/api.openweathermap.org; object-src 'self'", "description": "Displays current time and weather in multiple cities when opening New Tab.", "permissions": [ "storage" ], "chrome_url_overrides": { "newtab": "index.html" }, "browser_action": { "default_popup": "index.html?popup", "default_icon": { "16": "assets\/images\/icon16.png", "48": "assets\/images\/icon48.png", "128": "assets\/images\/icon128.png" } }, "icons": { "16": "assets\/images\/icon16.png", "48": "assets\/images\/icon48.png", "128": "assets\/images\/icon128.png" } } |