Weather Widget

Weather Widget By Rohan Patil

Weather Widgetคืออะไร?

Weather Widget เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Silypointer และคุณลักษณะหลักของมันคือ "Weather Widget By Rohan Patil"

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    ]
}