Website Footprint

The extension provides a carbon score for the visited websites.

Vad är Website Footprint?

Website Footprint är en Chrome-tillägg utvecklad av Advency, och dess huvudfunktion är "The extension provides a carbon score for the visited websites.".

Tilläggsskärmbilder

screenshot

Ladda ner Website Footprint-förlängningens CRX-fil

Ladda ner Website Footprint-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Website Footprint Website Footprint
ID jlpnojjijmliogpegigbllcnpckflnik
Officiell webbadress https://chromewebstore.google.com/detail/website-footprint/jlpnojjijmliogpegigbllcnpckflnik
Beskrivning The extension provides a carbon score for the visited websites.
Filstorlek 12.72 KB
Antal Installationer 2,173
Aktuell Version 1.0.3
Senast Uppdaterad 2022-04-15
Publiceringsdatum 2020-03-31
Betyg 4.25/5 Totalt 8 Betyg
Utvecklare Advency
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://website-footprint.com/
Hjälpsida URL http://advency.fr
Stödda Språk 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"
            ]
        }
    ]
}