Start Weather

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

什么是Start Weather?

Start Weather是由george.miscalencu开发的Chrome扩展程序,该扩展的主要功能是“Displays the weather for multiple locations that you can set using the free weather API provided by Yahoo (Yahoo Weather API).”。

扩展截图

screenshot
screenshot
screenshot

下载Start Weather扩展crx文件

下载Start Weather扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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!                    

扩展基本信息

名称 Start Weather Start Weather
ID ghjiajigjjgmcfloakbbejmhcoelpmbh
官方URL https://chrome.google.com/webstore/detail/ghjiajigjjgmcfloakbbejmhcoelpmbh
简介 Displays the weather for multiple locations that you can set using the free weather API provided by Yahoo (Yahoo Weather API).
文件大小 2.54 MB
安装次数 807
当前版本 0.64
更新时间 2017-08-04
上架时间 2017-08-04
评分 3.11/5 共9次评分
开发者 george.miscalencu
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/miscalencu/Google-Chrome-Simple-Weather
帮助页面URL https://github.com/miscalencu/Google-Chrome-Simple-Weather/issues
支持的语言 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\/*"
    ]
}