Website Footprint

The extension provides a carbon score for the visited websites.

Was ist Website Footprint?

Website Footprint ist eine Chrome-Erweiterung, die von Advency entwickelt wurde, und ihr Hauptmerkmal ist "The extension provides a carbon score for the visited websites.".

Erweiterungsscreenshots

screenshot

Website Footprint-Erweiterungs-CRX-Datei herunterladen

Laden Sie Website Footprint-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Website Footprint Website Footprint
ID jlpnojjijmliogpegigbllcnpckflnik
Offizielle URL https://chromewebstore.google.com/detail/website-footprint/jlpnojjijmliogpegigbllcnpckflnik
Beschreibung The extension provides a carbon score for the visited websites.
Dateigröße 12.72 KB
Installationsanzahl 2,173
Aktuelle Version 1.0.3
Letztes Update 2022-04-15
Veröffentlichungsdatum 2020-03-31
Bewertung 4.25/5 Insgesamt 8 Bewertungen
Entwickler Advency
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://website-footprint.com/
Hilfeseite URL http://advency.fr
Unterstützte Sprachen 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"
            ]
        }
    ]
}