Website Footprint

The extension provides a carbon score for the visited websites.

Apa itu Website Footprint?

Website Footprint adalah ekstensi Chrome yang dikembangkan oleh Advency, dan fitur utamanya adalah "The extension provides a carbon score for the visited websites.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Website Footprint

Unduh file ekstensi Website Footprint dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Website Footprint Website Footprint
ID jlpnojjijmliogpegigbllcnpckflnik
URL Resmi https://chromewebstore.google.com/detail/website-footprint/jlpnojjijmliogpegigbllcnpckflnik
Deskripsi The extension provides a carbon score for the visited websites.
Ukuran File 12.72 KB
Jumlah Instalasi 2,173
Versi Saat Ini 1.0.3
Terakhir Diperbarui 2022-04-15
Tanggal Publikasi 2020-03-31
Penilaian 4.25/5 Total 8 Penilaian
Pengembang Advency
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://website-footprint.com/
URL Halaman Bantuan http://advency.fr
Bahasa yang Didukung 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"
            ]
        }
    ]
}