Weather Widget

Weather Widget By Rohan Patil

Weather Widgetとは何ですか?

Weather WidgetはSilypointerによって開発されたChromeの拡張機能で、その主な機能は「Weather Widget By Rohan Patil」です。

拡張機能のスクリーンショット

screenshot

Weather Widget拡張機能のCRXファイルをダウンロード

Weather Widget拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Weather Widget Weather Widget
ID cbfonhkeidkoldmfnffmpejogimdjknc
公式URL https://chromewebstore.google.com/detail/weather-widget/cbfonhkeidkoldmfnffmpejogimdjknc
説明 Weather Widget By Rohan Patil
ファイルサイズ 238 KB
インストール数 131
現在のバージョン 0.1
最終更新日 2021-01-09
公開日 2021-01-09
評価 5.00/5 合計 1 レビュー
開発者 Silypointer
Eメール [email protected]
支払い方法 free
対応言語 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"
    ]
}