Weather extension

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

Τι είναι το Weather extension;

Το Weather extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον neven.c100, και η κύρια λειτουργία του είναι "Extension for weather. Data for weather is fetched from OpenWeather.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Weather extension

Λήψη αρχείων επέκτασης 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"
    }
}