Website Footprint

The extension provides a carbon score for the visited websites.

什么是Website Footprint?

Website Footprint是由Advency开发的Chrome扩展程序,该扩展的主要功能是“The extension provides a carbon score for the visited websites.”。

扩展截图

screenshot

下载Website Footprint扩展crx文件

下载Website Footprint扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Website Footprint Website Footprint
ID jlpnojjijmliogpegigbllcnpckflnik
官方URL https://chromewebstore.google.com/detail/website-footprint/jlpnojjijmliogpegigbllcnpckflnik
简介 The extension provides a carbon score for the visited websites.
文件大小 12.72 KB
安装次数 2,173
当前版本 1.0.3
更新时间 2022-04-15
上架时间 2020-03-31
评分 4.25/5 共8次评分
开发者 Advency
电子邮箱 [email protected]
付费类型 free
扩展官网 https://website-footprint.com/
帮助页面URL http://advency.fr
支持的语言 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"
            ]
        }
    ]
}