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 là gì?

Start Weather là một tiện ích mở rộng Chrome được phát triển bởi george.miscalencu, và tính năng chính của nó là "Displays the weather for multiple locations that you can set using the free weather API provided by Yahoo (Yahoo Weather API).".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Start Weather

Tải xuống các tệp mở rộng Start Weather dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Start Weather Start Weather
ID ghjiajigjjgmcfloakbbejmhcoelpmbh
URL Chính Thức https://chrome.google.com/webstore/detail/ghjiajigjjgmcfloakbbejmhcoelpmbh
Mô tả Displays the weather for multiple locations that you can set using the free weather API provided by Yahoo (Yahoo Weather API).
Kích Thước Tệp 2.54 MB
Số Lần Cài Đặt 807
Phiên Bản Hiện Tại 0.64
Cập Nhật Lần Cuối 2017-08-04
Ngày Phát Hành 2017-08-04
Đánh Giá 3.11/5 Tổng số 9 Đánh Giá
Nhà Phát Triển george.miscalencu
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/miscalencu/Google-Chrome-Simple-Weather
URL Trang Trợ Giúp https://github.com/miscalencu/Google-Chrome-Simple-Weather/issues
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}