Start Weather

Displays the weather for multiple locations that you can set using the free weather API provided by Yahoo (Yahoo Weather API).

Start Weather란 무엇입니까?

Start Weather은(는) george.miscalencu에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displays the weather for multiple locations that you can set using the free weather API provided by Yahoo (Yahoo Weather API)."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Chrome extension that displays the weather in the start page of the browser by showing weather info and a geo localized background image, using the free weather API provided by Yahoo.

Features:

The feed is automatically using the current system's language setting for the response info.
Multiple locations that can be set/changed
Option for Celsius or Fahrenheit display
Option to have links to weather.Yahoo.com and Weatherunderground.com
Option for background refresh (1, 2, 3, 4 or 6 hours)
Option for weather date and/or last check date.

Features to be implemented:

Moon phases

Stay tuned!                    

확장 프로그램 기본 정보

이름 Start Weather Start Weather
ID ghjiajigjjgmcfloakbbejmhcoelpmbh
공식 URL https://chrome.google.com/webstore/detail/ghjiajigjjgmcfloakbbejmhcoelpmbh
설명 Displays the weather for multiple locations that you can set using the free weather API provided by Yahoo (Yahoo Weather API).
파일 크기 2.54 MB
설치 횟수 807
현재 버전 0.64
최근 업데이트 2017-08-04
출시 날짜 2017-08-04
평점 3.11/5 총 9 개의 평점
개발자 george.miscalencu
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/miscalencu/Google-Chrome-Simple-Weather
도움말 페이지 URL https://github.com/miscalencu/Google-Chrome-Simple-Weather/issues
지원되는 언어 de,en,fr,es,it,pt-BR,ro,ru,hi,bn,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_application_title__",
    "description": "__MSG_application_description__",
    "version": "0.64",
    "manifest_version": 2,
    "default_locale": "en",
    "options_page": "options.html",
    "background": {
        "page": "background.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com https:\/\/*.yahooapis.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [],
            "js": [
                "\/js\/jquery\/jquery-1.11.0.min.js",
                "js\/in.js",
                "js\/core.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_title": "Start Weather"
    },
    "icons": {
        "128": "images\/icon_128.png",
        "16": "images\/icon.png"
    },
    "permissions": [
        "webNavigation",
        "tabs",
        "geolocation",
        "topSites"
    ],
    "web_accessible_resources": [
        "weather.htm",
        "\/css\/in.css",
        "images\/*"
    ]
}