Tiny Weather Forecast
Tiny extension what showing you weather forecast from yr.no (Norwegian Meteorological Institute and the NRK)
Qu'est-ce que Tiny Weather Forecast ?
Tiny Weather Forecast est une extension Chrome développée par vo-va, et sa fonction principale est "Tiny extension what showing you weather forecast from yr.no (Norwegian Meteorological Institute and the NRK)".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Tiny Weather Forecast
Téléchargez les fichiers d'extension Tiny Weather Forecast au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Shows good and accurate weather forecasts for almost all corners of the Earth in a minimalist style. This extension use weather forecast from yr.no, delivered by the Norwegian Meteorological Institute and the Norwegian Broadcasting Corporation. Tiny Weather Forecast is not affiliated with Norwegian Meteorological Institute and the NRK in any way, but use open data kindly provided by these organizations. After you install this extension, Oslo will be selected as the default location for the weather forecast. To change location: 1. Navigate to site https://www.yr.no/ 2. Find and open the page of a location to which you want to receive weather forecasts. 3. On the location page under the name will be a link "Set this as a place for extension", click on it to change location. Click on the icon will open the detailed weather forecast for the selected place. Weather icon and temperature smoothly change each other every 20 seconds.
Informations de Base sur l'Extension
Nom | |
ID | cnfgfoobbopopcenopgpabliecjgeeko |
URL Officiel | https://chrome.google.com/webstore/detail/tiny-weather-forecast/cnfgfoobbopopcenopgpabliecjgeeko |
Description | Tiny extension what showing you weather forecast from yr.no (Norwegian Meteorological Institute and the NRK) |
Taille du Fichier | 138 KB |
Nombre d'Installations | 358 |
Version Actuelle | 1.2.0 |
Dernière Mise à Jour | 2022-01-31 |
Date de Publication | 2017-03-20 |
Évaluation | 3.25/5 Total 8 Évaluations |
Développeur | vo-va |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/vo-va/tiny-weather-forecast |
URL de la Page d'Aide | https://github.com/vo-va/tiny-weather-forecast/issues |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Tiny Weather Forecast", "version": "1.2.0", "manifest_version": 2, "description": "Tiny extension what showing you weather forecast from yr.no (Norwegian Meteorological Institute and the NRK)", "author": "Vladimir Platunov, https:\/\/github.com\/vo-va", "icons": { "128": "twf.png" }, "permissions": [ "tabs", "storage", "*:\/\/www.yr.no\/*" ], "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/www.yr.no\/*" ], "js": [ "setplace.js" ], "css": [ "main.css" ] } ], "browser_action": { "default_icon": "twf.png" } } |