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文件

下載App for Weather Forecast擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}