Website Footprint

The extension provides a carbon score for the visited websites.

Τι είναι το Website Footprint;

Το Website Footprint είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Advency, και η κύρια λειτουργία του είναι "The extension provides a carbon score for the visited websites.".

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

screenshot

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

Λήψη αρχείων επέκτασης Website Footprint σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        The extension provides a carbon score for the visited websites. SaveTheInternet has the ambition to educate people on a green internet usage. It consumes a lot of energy to render webpages. Check your current carbon impact thanks to SaveTheInternet.

Features :
- Get the carbon score of the visited website
- Watch the consumption for your whole session
- Convert co2 into coal for a better understanding of risks

The extension does not collect any data and does not use any external server. The goal is to be lightweight as possible.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Website Footprint Website Footprint
ID jlpnojjijmliogpegigbllcnpckflnik
Επίσημο URL https://chromewebstore.google.com/detail/website-footprint/jlpnojjijmliogpegigbllcnpckflnik
Περιγραφή The extension provides a carbon score for the visited websites.
Μέγεθος Αρχείου 12.72 KB
Αριθμός Εγκαταστάσεων 2,173
Τρέχουσα Έκδοση 1.0.3
Τελευταία Ενημέρωση 2022-04-15
Ημερομηνία Δημοσίευσης 2020-03-31
Αξιολόγηση 4.25/5 Συνολικά 8 Αξιολογήσεις
Προγραμματιστής Advency
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://website-footprint.com/
Διεύθυνση URL της Σελίδας Βοήθειας http://advency.fr
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Website Footprint",
    "version": "1.0.3",
    "description": "The extension provides a carbon score for the visited websites.",
    "manifest_version": 3,
    "icons": {
        "16": "images\/icon_32.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_32.png",
        "128": "images\/icon_32.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/icon_32.png",
            "32": "images\/icon_32.png",
            "48": "images\/icon_32.png",
            "128": "images\/icon_32.png"
        }
    },
    "options_page": "options.html",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "foreground.js"
            ]
        }
    ]
}