MicroWeather

Simple weather application

Co to jest MicroWeather?

MicroWeather to rozszerzenie Chrome opracowane przez George, a jego główną funkcją jest „Simple weather application”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia MicroWeather

Pobierz pliki rozszerzeń MicroWeather w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        Simple weather application which uses weather data from OpenWeatherMap.
New: The app now shows hourly weather data for the next few days.                    

Podstawowe informacje o rozszerzeniu

Nazwa MicroWeather MicroWeather
ID mlkbifdobkhikfmhopopgdfikiilbhio
Oficjalny URL https://chromewebstore.google.com/detail/microweather/mlkbifdobkhikfmhopopgdfikiilbhio
Opis Simple weather application
Rozmiar pliku 89.51 KB
Liczba instalacji 953
Aktualna Wersja 1.5
Ostatnia Aktualizacja 2015-11-22
Data Publikacji 2015-11-22
Ocena 4.29/5 Łącznie 21 Oceny
Deweloper George
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "MicroWeather",
    "description": "Simple weather application",
    "version": "1.5",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/jquery.js",
                "js\/helper.js",
                "js\/myscript.js"
            ],
            "css": [
                "css\/main.css"
            ]
        }
    ]
}