Weather Widget

Weather Widget By Rohan Patil

Cos'è Weather Widget?

Weather Widget è un'estensione di Chrome sviluppata da Silypointer, e la sua funzione principale è "Weather Widget By Rohan Patil".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Weather Widget

Scarica i file di estensione Weather Widget in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Weather Widget Weather Widget
ID cbfonhkeidkoldmfnffmpejogimdjknc
URL Ufficiale https://chromewebstore.google.com/detail/weather-widget/cbfonhkeidkoldmfnffmpejogimdjknc
Descrizione Weather Widget By Rohan Patil
Dimensione del File 238 KB
Conteggio Installazioni 131
Versione Corrente 0.1
Ultimo Aggiornamento 2021-01-09
Data di Pubblicazione 2021-01-09
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Silypointer
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}