MicroWeather

Simple weather application

What is MicroWeather?

MicroWeather is a Chrome extension developed by George, and its main feature is "Simple weather application".

Extension Screenshots

screenshot

Download MicroWeather Extension CRX File

Download MicroWeather extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name MicroWeather MicroWeather
ID mlkbifdobkhikfmhopopgdfikiilbhio
Official URL https://chromewebstore.google.com/detail/microweather/mlkbifdobkhikfmhopopgdfikiilbhio
Description Simple weather application
File Size 89.51 KB
Installation Count 953
Current Version 1.5
Last Updated 2015-11-22
Publish Date 2015-11-22
Rating 4.29/5 Total 21 Ratings
Developer George
Email [email protected]
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}