MicroWeather
Simple weather application
MicroWeatherとは何ですか?
MicroWeatherはGeorgeによって開発されたChromeの拡張機能で、その主な機能は「Simple weather application」です。
拡張機能のスクリーンショット
MicroWeather拡張機能のCRXファイルをダウンロード
MicroWeather拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Simple weather application which uses weather data from OpenWeatherMap. New: The app now shows hourly weather data for the next few days.
拡張機能の基本情報
名前 | MicroWeather |
ID | mlkbifdobkhikfmhopopgdfikiilbhio |
公式URL | https://chromewebstore.google.com/detail/microweather/mlkbifdobkhikfmhopopgdfikiilbhio |
説明 | Simple weather application |
ファイルサイズ | 89.51 KB |
インストール数 | 953 |
現在のバージョン | 1.5 |
最終更新日 | 2015-11-22 |
公開日 | 2015-11-22 |
評価 | 4.29/5 合計 21 レビュー |
開発者 | George |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "MicroWeather", "description": "Simple weather application", "version": "1.5", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/jquery.js", "js\/helper.js", "js\/myscript.js" ], "css": [ "css\/main.css" ] } ] } |