WeatherQuick

WeatherQuick shows the current weather of a location as a browser icon.

WeatherQuickคืออะไร?

WeatherQuick เป็นส่วนขยายของ Chrome ที่พัฒนาโดย IceCode Software และคุณลักษณะหลักของมันคือ "WeatherQuick shows the current weather of a location as a browser icon."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย WeatherQuick

ดาวน์โหลดไฟล์ส่วนขยาย WeatherQuick ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        I made this extension as quick way to look at my current weather without task-switching to my desktop. It uses MSN weather API to retrieve the current temperature and conditions. The location uses MSN's location search so its pretty forgiving. I couldn't find the documentation for the API so there might be some conditions that icon doesn't pop up. In which case just email me so I can fix the issue. I also want to find out if the API I am using has a way to check if its night or not.  

Updates
1.0.1: fixed a title
1.0.2: changed to a more mild color for temp and added a popup to see status better when there isn't enough detail in the icon
1.0.3: added lookup up location name to hover text and the popup
1.0.4: added radar and permission from weatherchannel
For bugs and questions email:
[email protected]                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ WeatherQuick WeatherQuick
ID kbcnfebfgdgokkmkpffaolmepceealjf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/weatherquick/kbcnfebfgdgokkmkpffaolmepceealjf
คำอธิบาย WeatherQuick shows the current weather of a location as a browser icon.
ขนาดไฟล์ 179 KB
จำนวนการติดตั้ง 74
เวอร์ชันปัจจุบัน 1.0.4
อัปเดตครั้งล่าสุด 2012-05-20
วันที่เผยแพร่ 2012-05-20
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา IceCode Software
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WeatherQuick",
    "version": "1.0.4",
    "description": "WeatherQuick shows the current weather of a location as a browser icon.",
    "icons": {
        "128": "icons\/wq128.png",
        "48": "icons\/wq48.png",
        "16": "icons\/wq16.png"
    },
    "options_page": "options.html",
    "browser_action": {
        "name": "WeatherQuick",
        "default_popup": "popup.html"
    },
    "permissions": [
        "http:\/\/weather.msn.com\/*",
        "http:\/\/www.weather.com\/weather\/map\/*"
    ],
    "background": {
        "page": "weatherbg.html"
    },
    "manifest_version": 2
}