MicroWeather

Simple weather application

Qu'est-ce que MicroWeather ?

MicroWeather est une extension Chrome développée par George, et sa fonction principale est "Simple weather application".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension MicroWeather

Téléchargez les fichiers d'extension MicroWeather au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom MicroWeather MicroWeather
ID mlkbifdobkhikfmhopopgdfikiilbhio
URL Officiel https://chromewebstore.google.com/detail/microweather/mlkbifdobkhikfmhopopgdfikiilbhio
Description Simple weather application
Taille du Fichier 89.51 KB
Nombre d'Installations 953
Version Actuelle 1.5
Dernière Mise à Jour 2015-11-22
Date de Publication 2015-11-22
Évaluation 4.29/5 Total 21 Évaluations
Développeur George
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}