Weather Widget

Weather Widget By Rohan Patil

What is Weather Widget?

Weather Widget is a Chrome extension developed by Silypointer, and its main feature is "Weather Widget By Rohan Patil".

Extension Screenshots

screenshot

Download Weather Widget Extension CRX File

Download Weather Widget extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Created a Simple Google Chrome Extension for getting current weather.

User needs to search for proper city, and extension will respond back with Local Time
Temperature and Weather Description.

Extension in back end calls an API which in turn calls an API from weatherstack.com (free).

Currently the response output is not altered.                    

Extension Basic Information

Name Weather Widget Weather Widget
ID cbfonhkeidkoldmfnffmpejogimdjknc
Official URL https://chromewebstore.google.com/detail/weather-widget/cbfonhkeidkoldmfnffmpejogimdjknc
Description Weather Widget By Rohan Patil
File Size 238 KB
Installation Count 131
Current Version 0.1
Last Updated 2021-01-09
Publish Date 2021-01-09
Rating 5.00/5 Total 1 Ratings
Developer Silypointer
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Weather Widget",
    "description": "Weather Widget By Rohan Patil",
    "version": "0.1",
    "icons": {
        "16": "images\/weather_16.png",
        "128": "images\/weather_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.5.1.min.js",
                "getWeather.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ]
}