Website Footprint

The extension provides a carbon score for the visited websites.

Co to jest Website Footprint?

Website Footprint to rozszerzenie Chrome opracowane przez Advency, a jego główną funkcją jest „The extension provides a carbon score for the visited websites.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Website Footprint

Pobierz pliki rozszerzeń Website Footprint w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Website Footprint Website Footprint
ID jlpnojjijmliogpegigbllcnpckflnik
Oficjalny URL https://chromewebstore.google.com/detail/website-footprint/jlpnojjijmliogpegigbllcnpckflnik
Opis The extension provides a carbon score for the visited websites.
Rozmiar pliku 12.72 KB
Liczba instalacji 2,173
Aktualna Wersja 1.0.3
Ostatnia Aktualizacja 2022-04-15
Data Publikacji 2020-03-31
Ocena 4.25/5 Łącznie 8 Oceny
Deweloper Advency
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://website-footprint.com/
Adres URL Strony Pomocy http://advency.fr
Obsługiwane Języki 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"
            ]
        }
    ]
}