MicroWeather

Simple weather application

Wat is MicroWeather?

MicroWeather is een Chrome-extensie ontwikkeld door George, en de belangrijkste functie is "Simple weather application".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie MicroWeather

Download MicroWeather-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam MicroWeather MicroWeather
ID mlkbifdobkhikfmhopopgdfikiilbhio
Officiële URL https://chromewebstore.google.com/detail/microweather/mlkbifdobkhikfmhopopgdfikiilbhio
Beschrijving Simple weather application
Bestandsgrootte 89.51 KB
Aantal Installaties 953
Huidige Versie 1.5
Laatst Bijgewerkt 2015-11-22
Publicatiedatum 2015-11-22
Beoordeling 4.29/5 Totaal 21 Beoordelingen
Ontwikkelaar George
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
            ]
        }
    ]
}