Start Weather

Displays the weather for multiple locations that you can set using the free weather API provided by Yahoo (Yahoo Weather API).

O que é Start Weather?

Start Weather é uma extensão do Chrome desenvolvida por george.miscalencu, e sua principal característica é "Displays the weather for multiple locations that you can set using the free weather API provided by Yahoo (Yahoo Weather API).".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Start Weather

Baixe arquivos de extensão Start Weather 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

                        Chrome extension that displays the weather in the start page of the browser by showing weather info and a geo localized background image, using the free weather API provided by Yahoo.

Features:

The feed is automatically using the current system's language setting for the response info.
Multiple locations that can be set/changed
Option for Celsius or Fahrenheit display
Option to have links to weather.Yahoo.com and Weatherunderground.com
Option for background refresh (1, 2, 3, 4 or 6 hours)
Option for weather date and/or last check date.

Features to be implemented:

Moon phases

Stay tuned!                    

Informações Básicas da Extensão

Nome Start Weather Start Weather
ID ghjiajigjjgmcfloakbbejmhcoelpmbh
URL Oficial https://chrome.google.com/webstore/detail/ghjiajigjjgmcfloakbbejmhcoelpmbh
Descrição Displays the weather for multiple locations that you can set using the free weather API provided by Yahoo (Yahoo Weather API).
Tamanho do Arquivo 2.54 MB
Contagem de Instalações 807
Versão Atual 0.64
Última Atualização 2017-08-04
Data de Publicação 2017-08-04
Classificação 3.11/5 Total de 9 Avaliações
Desenvolvedor george.miscalencu
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/miscalencu/Google-Chrome-Simple-Weather
URL da Página de Ajuda https://github.com/miscalencu/Google-Chrome-Simple-Weather/issues
Idiomas Suportados de,en,fr,es,it,pt-BR,ro,ru,hi,bn,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_application_title__",
    "description": "__MSG_application_description__",
    "version": "0.64",
    "manifest_version": 2,
    "default_locale": "en",
    "options_page": "options.html",
    "background": {
        "page": "background.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com https:\/\/*.yahooapis.com; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [],
            "js": [
                "\/js\/jquery\/jquery-1.11.0.min.js",
                "js\/in.js",
                "js\/core.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "images\/icon.png",
        "default_title": "Start Weather"
    },
    "icons": {
        "128": "images\/icon_128.png",
        "16": "images\/icon.png"
    },
    "permissions": [
        "webNavigation",
        "tabs",
        "geolocation",
        "topSites"
    ],
    "web_accessible_resources": [
        "weather.htm",
        "\/css\/in.css",
        "images\/*"
    ]
}