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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย vo-va และคุณลักษณะหลักของมันคือ "Tiny extension what showing you weather forecast from yr.no (Norwegian Meteorological Institute and the NRK)"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Tiny Weather Forecast
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
URL อย่างเป็นทางการ | 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" } } |