Tiny Weather Forecast
Tiny extension what showing you weather forecast from yr.no (Norwegian Meteorological Institute and the NRK)
什麼是Tiny Weather Forecast?
Tiny Weather Forecast是由vo-va開發的Chrome擴展程式,該擴展的主要功能是“Tiny extension what showing you weather forecast from yr.no (Norwegian Meteorological Institute and the NRK)”。
擴展截圖
下載Tiny Weather Forecast擴展crx文件
下載Tiny Weather Forecast擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | |
ID | cnfgfoobbopopcenopgpabliecjgeeko |
官方網址 | https://chrome.google.com/webstore/detail/tiny-weather-forecast/cnfgfoobbopopcenopgpabliecjgeeko |
簡介 | Tiny extension what showing you weather forecast from yr.no (Norwegian Meteorological Institute and the NRK) |
檔案大小 | 138 KB |
安裝次數 | 358 |
目前版本 | 1.2.0 |
更新時間 | 2022-01-31 |
上架時間 | 2017-03-20 |
評分 | 3.25/5 共 8 次評分 |
開發者 | vo-va |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/vo-va/tiny-weather-forecast |
說明頁面URL | https://github.com/vo-va/tiny-weather-forecast/issues |
支援的語言 | 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" } } |