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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον MeryDev, και η κύρια λειτουργία του είναι "The easiest way to lookup current weather in your area, plus, get badge notifications".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης App for Weather Forecast

Λήψη αρχείων επέκτασης 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
Επίσημο 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"
    }
}