Weather extension

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

什么是Weather extension?

Weather extension是由neven.c100开发的Chrome扩展程序,该扩展的主要功能是“Extension for weather. Data for weather is fetched from OpenWeather.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Weather extension扩展crx文件

下载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"
    }
}