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)"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Tiny Weather Forecast 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Tiny Weather Forecast Tiny Weather Forecast
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"
    }
}