Weather Forecast

Provides local and long-range weather forecasts using Weather Underground

Weather Forecastคืออะไร?

Weather Forecast เป็นส่วนขยายของ Chrome ที่พัฒนาโดย chYer และคุณลักษณะหลักของมันคือ "Provides local and long-range weather forecasts using Weather Underground"

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

screenshot
screenshot
screenshot

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

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

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

                        Weather Forecast is a comprehensive weather forecasting extension for your browser. It is powered by Weather Underground: "www.wunderground.com"

Key Features:
1. Multiple locations support.
2. Shows the current weather temperature in the toolbar icon.
3. Shows 10-Day Weather Forecast in three different formats.
4. Shows a Radar map of the selected location, plus a lot more useful information.
5. Has global coverage.

For bug reports please use: https://github.com/alexis-jaksone/forecast-plus/issues
For FAQs visit: http://add0n.com/forecast-plus.html

Change Log:
0.3.0
1. We are now using alarms and idle APIs and hence there is no running background process anymore. This makes this extension super light!
2. UI is revamped!
3. A few bugs are fixed
0.3.2
1. Fixes https://add0n.com/forecast-plus.html#comment-3505500825
0.3.3
1. Fixes https://add0n.com/forecast-plus.html#IDComment1049773066
0.4.1
1. Fixes interface is not loading on the popup                    

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

ชื่อ Weather Forecast Weather Forecast
ID ofobaelkgcpicbdoabokjlnmdcbjellg
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/weather-forecast/ofobaelkgcpicbdoabokjlnmdcbjellg
คำอธิบาย Provides local and long-range weather forecasts using Weather Underground
ขนาดไฟล์ 671 KB
จำนวนการติดตั้ง 10,000
เวอร์ชันปัจจุบัน 0.5.7
อัปเดตครั้งล่าสุด 2023-01-09
วันที่เผยแพร่ 2020-06-07
คะแนน 3.98/5 รวมทั้งหมด 176 คะแนน
ผู้พัฒนา chYer
อีเมล chyer.webstore@yahoo.com
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://webextension.org/listing/forecast-plus.html
URL หน้าช่วยเหลือ https://webextension.org/listing/forecast-plus.html
ภาษาที่รองรับ de,en,fr,nl,tr,es,it,pt-PT,ru,zh-CN,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Weather Forecast",
    "description": "__MSG_description__",
    "default_locale": "en",
    "version": "0.5.7",
    "manifest_version": 3,
    "permissions": [
        "declarativeNetRequest",
        "storage",
        "alarms",
        "idle",
        "contextMenus"
    ],
    "host_permissions": [
        "*:\/\/www.wunderground.com\/*",
        "*:\/\/api.weather.com\/*"
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "action": {
        "default_popup": "\/data\/popup\/index.html",
        "default_title": "To get badge notification, open popup -> Find location -> Press 'View Full Forecast'"
    },
    "background": {
        "service_worker": "worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.wunderground.com\/*"
            ],
            "js": [
                "data\/inject\/clean.js",
                "data\/inject\/observe.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "homepage_url": "https:\/\/webextension.org\/listing\/forecast-plus.html",
    "icons": {
        "16": "data\/icons\/16.png",
        "24": "data\/icons\/24.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png"
    },
    "options_ui": {
        "page": "\/data\/options\/index.html",
        "open_in_tab": true
    }
}