Weather extension

Extension for weather. Data for weather is fetched from OpenWeather.

Weather extensionคืออะไร?

Weather extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย neven.c100 และคุณลักษณะหลักของมันคือ "Extension for weather. Data for weather is fetched from OpenWeather."

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Free and simple weather extension that helps you to quickly fetch weather data. The extension is very simple, but it provides a lot of details for a current weather and even hourly and daily weather forecast.
The data is fetched from OpenWeather and if you have your own API key it is highly recommended to set it in the extension options for better extension performance. You can also choose Celsius or Fahrenheit temperature units (Celsius is default).
Now you can see the weather of the current web site location.

You can check our web page: https://weatherforfree.rf.gd/                    

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

ชื่อ Weather extension Weather extension
ID iobihohlclladpcjgmpagioglhdlgkkc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/weather-extension/iobihohlclladpcjgmpagioglhdlgkkc
คำอธิบาย Extension for weather. Data for weather is fetched from OpenWeather.
ขนาดไฟล์ 1.33 MB
จำนวนการติดตั้ง 11
เวอร์ชันปัจจุบัน 1.1.2
อัปเดตครั้งล่าสุด 2021-08-25
วันที่เผยแพร่ 2021-02-03
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา neven.c100
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://weatherforfree.rf.gd/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Weather extension",
    "description": "Extension for weather. Data for weather is fetched from OpenWeather.",
    "version": "1.1.2",
    "manifest_version": 2,
    "background": {
        "scripts": [
            ".\/background.js"
        ],
        "persistent": false
    },
    "options_page": ".\/options\/options.html",
    "browser_action": {
        "default_popup": ".\/popup\/popup.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/apis.google.com; object-src 'self'",
    "permissions": [
        "https:\/\/openweathermap.org\/*",
        "https:\/\/weatherforfree.rf.gd\/*",
        "https:\/\/ipapi.co\/*",
        "http:\/\/www.fileformat.info\/*",
        "geolocation",
        "tabs",
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.weatherforfree.rf.gd\/"
            ],
            "js": [
                ".\/bootstrap\/jquery-3.5.1.min.js",
                ".\/weatherforfree.js"
            ]
        }
    ],
    "icons": {
        "16": ".\/imgs\/icon.png"
    }
}