Weather extension
Extension for weather. Data for weather is fetched from OpenWeather.
What is Weather extension?
Weather extension is a Chrome extension developed by neven.c100, and its main feature is "Extension for weather. Data for weather is fetched from OpenWeather.".
Extension Screenshots
Download Weather extension Extension CRX File
Download Weather extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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/
Extension Basic Information
Name | Weather extension |
ID | iobihohlclladpcjgmpagioglhdlgkkc |
Official URL | https://chromewebstore.google.com/detail/weather-extension/iobihohlclladpcjgmpagioglhdlgkkc |
Description | Extension for weather. Data for weather is fetched from OpenWeather. |
File Size | 1.33 MB |
Installation Count | 11 |
Current Version | 1.1.2 |
Last Updated | 2021-08-25 |
Publish Date | 2021-02-03 |
Rating | 5.00/5 Total 3 Ratings |
Developer | neven.c100 |
[email protected] | |
Payment Type | free |
Extension Website | https://weatherforfree.rf.gd/ |
Supported Languages | 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" } } |