MicroWeather

Simple weather application

什麼是MicroWeather?

MicroWeather是由George開發的Chrome擴展程式,該擴展的主要功能是“Simple weather application”。

擴展截圖

screenshot

下載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 MicroWeather
ID mlkbifdobkhikfmhopopgdfikiilbhio
官方網址 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
電子郵箱 [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"
            ]
        }
    ]
}