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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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