Website Footprint

The extension provides a carbon score for the visited websites.

O que é Website Footprint?

Website Footprint é uma extensão do Chrome desenvolvida por Advency, e sua principal característica é "The extension provides a carbon score for the visited websites.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Website Footprint

Baixe arquivos de extensão Website Footprint no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Website Footprint Website Footprint
ID jlpnojjijmliogpegigbllcnpckflnik
URL Oficial https://chromewebstore.google.com/detail/website-footprint/jlpnojjijmliogpegigbllcnpckflnik
Descrição The extension provides a carbon score for the visited websites.
Tamanho do Arquivo 12.72 KB
Contagem de Instalações 2,173
Versão Atual 1.0.3
Última Atualização 2022-04-15
Data de Publicação 2020-03-31
Classificação 4.25/5 Total de 8 Avaliações
Desenvolvedor Advency
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://website-footprint.com/
URL da Página de Ajuda http://advency.fr
Idiomas Suportados 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"
            ]
        }
    ]
}