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
Eメール [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"
    }
}