Website Footprint

The extension provides a carbon score for the visited websites.

Website Footprint là gì?

Website Footprint là một tiện ích mở rộng Chrome được phát triển bởi Advency, và tính năng chính của nó là "The extension provides a carbon score for the visited websites.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Website Footprint

Tải xuống các tệp mở rộng Website Footprint dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Website Footprint Website Footprint
ID jlpnojjijmliogpegigbllcnpckflnik
URL Chính Thức https://chromewebstore.google.com/detail/website-footprint/jlpnojjijmliogpegigbllcnpckflnik
Mô tả The extension provides a carbon score for the visited websites.
Kích Thước Tệp 12.72 KB
Số Lần Cài Đặt 2,173
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2022-04-15
Ngày Phát Hành 2020-03-31
Đánh Giá 4.25/5 Tổng số 8 Đánh Giá
Nhà Phát Triển Advency
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://website-footprint.com/
URL Trang Trợ Giúp http://advency.fr
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}