Weather extension
Extension for weather. Data for weather is fetched from OpenWeather.
Weather extension là gì?
Weather extension là một tiện ích mở rộng Chrome được phát triển bởi neven.c100, và tính năng chính của nó là "Extension for weather. Data for weather is fetched from OpenWeather.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Weather extension
Tải xuống các tệp mở rộng Weather extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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/
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Weather extension |
ID | iobihohlclladpcjgmpagioglhdlgkkc |
URL Chính Thức | https://chromewebstore.google.com/detail/weather-extension/iobihohlclladpcjgmpagioglhdlgkkc |
Mô tả | Extension for weather. Data for weather is fetched from OpenWeather. |
Kích Thước Tệp | 1.33 MB |
Số Lần Cài Đặt | 11 |
Phiên Bản Hiện Tại | 1.1.2 |
Cập Nhật Lần Cuối | 2021-08-25 |
Ngày Phát Hành | 2021-02-03 |
Đánh Giá | 5.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | neven.c100 |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://weatherforfree.rf.gd/ |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |