Weather extension

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

Weather extension क्या है?

Weather extension neven.c100 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extension for weather. Data for weather is fetched from OpenWeather."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Weather extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}