App for Weather Forecast

The easiest way to lookup current weather in your area, plus, get badge notifications

App for Weather Forecast란 무엇입니까?

App for Weather Forecast은(는) MeryDev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "The easiest way to lookup current weather in your area, plus, get badge notifications"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        App for Weather Forecast is a comprehensive weather forecast addon that lets you easily open weather underground website (wunderground.com) in a new popup window.

Within the UI there are 6 buttons at the right-side to enhance using the app. Badge icon text notifies you of the current weather temperature. You can set the temperature to be in Centigrade or Fahrenheit units and badge text will automatically adapt to that.

Note 1: App for Weather Forecast does NOT belong or related to the official wunderground website in any ways. It is an unofficial app that is developed and maintained independently. The official wunderground page is only released for the web. This unofficial app (browser addon) is a wrapper to the original wunderground web application and tries to make it usable as a browser plug-in.

Note 2: in order to report bugs, please fill the bug report form in the addon's homepage (http://mybrowseraddon.com/app-for-weather.html).                    

확장 프로그램 기본 정보

이름 App for Weather Forecast App for Weather Forecast
ID mlgppjhcmfegjcfahgkmbkacbmjpfjbm
공식 URL https://chrome.google.com/webstore/detail/app-for-weather-forecast/mlgppjhcmfegjcfahgkmbkacbmjpfjbm
설명 The easiest way to lookup current weather in your area, plus, get badge notifications
파일 크기 53.29 KB
설치 횟수 239
현재 버전 0.1.0
최근 업데이트 2017-03-12
출시 날짜 2017-03-12
평점 1.50/5 총 2 개의 평점
개발자 MeryDev
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 http://mybrowseraddon.com/app-for-weather.html
도움말 페이지 URL http://mybrowseraddon.com/app-for-weather.html
개인정보 보호 정책 페이지 URL https://add0n.com/policies/mery.dev.txt
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.0",
    "manifest_version": 2,
    "short_name": "appforweather",
    "name": "App for Weather Forecast",
    "background": {
        "page": "lib\/chrome\/background.html"
    },
    "homepage_url": "http:\/\/mybrowseraddon.com\/app-for-weather.html",
    "web_accessible_resources": [
        "data\/panel\/panel.css",
        "data\/icons\/*.png"
    ],
    "browser_action": {
        "default_icon": "data\/icons\/32.png",
        "default_title": "App for Weather Forecast"
    },
    "description": "The easiest way to lookup current weather in your area, plus, get badge notifications",
    "permissions": [
        "tabs",
        "storage",
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "content_scripts": [
        {
            "all_frames": false,
            "run_at": "document_start",
            "js": [
                "data\/panel\/panel.js"
            ],
            "matches": [
                "*:\/\/www.wunderground.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}