Website Footprint

The extension provides a carbon score for the visited websites.

Что такое Website Footprint?

Website Footprint - это расширение Chrome, разработанное Advency, и его основная функция - "The extension provides a carbon score for the visited websites.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Website Footprint

Скачайте файлы расширений 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"
            ]
        }
    ]
}