MicroWeather

Simple weather application

O que é MicroWeather?

MicroWeather é uma extensão do Chrome desenvolvida por George, e sua principal característica é "Simple weather application".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão MicroWeather

Baixe arquivos de extensão MicroWeather no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome MicroWeather MicroWeather
ID mlkbifdobkhikfmhopopgdfikiilbhio
URL Oficial https://chromewebstore.google.com/detail/microweather/mlkbifdobkhikfmhopopgdfikiilbhio
Descrição Simple weather application
Tamanho do Arquivo 89.51 KB
Contagem de Instalações 953
Versão Atual 1.5
Última Atualização 2015-11-22
Data de Publicação 2015-11-22
Classificação 4.29/5 Total de 21 Avaliações
Desenvolvedor George
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}