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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Displays the weather for multiple locations that you can set using the free weather API provided by Yahoo (Yahoo Weather API)."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Start Weather एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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\/*"
    ]
}