eco₂rd

CO₂eq footprint for your browser based data consumption

Что такое eco₂rd?

eco₂rd - это расширение Chrome, разработанное eco2rd, и его основная функция - "CO₂eq footprint for your browser based data consumption".

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

screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения eco₂rd

Скачайте файлы расширений eco₂rd в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This is eco₂rd, an open-source browser extension that aims to help you measuring and understanding your browser traffic based energy consumption and CO2 emissions.


---------------------------------------------------------------------
Website emissions?
---------------------------------------------------------------------
With every website you open, there is - simply said - data transferred from the hosting provider to your machine. This data transfer comes with the cost of energy usage from different angles: from the data center of the hosting provider, from the network over which this data is transferred
and from your machine as the end consumer.

eco₂rd is measuring this data transfer with the 1 byte model from "The Shift Project" that declares the energy impact of every byte transferred.
Within the extension you have a few options to modify your actual footprint in order to be more accurate.

Via the options you can:
- set the country to measure your footprint with country based grid  emission factor
- set, whether you want to take into consideration "complete system boundaries" (this will take a bigger picture into account, e.g. energy needed for manufacturing the servers, constructing the cable and wireless network infrastructure and manufacturing end user devices) or "narrow system boundaries" (if you only want to know the energy required to make data flow through the cable).

Additionally you can
- pause the recording: the recording of your data consumption will pause until you restart it
- delete consumption data: this will delete all of the collected consumption data


---------------------------------------------------------------------
Data Center information
---------------------------------------------------------------------
If you pin eco₂rd to show up next to your address field in your browser, you will notice a color change of the icon from time to time.
The icon indicates whether the website tab you have currently opened is hosted on a data center that is certified by the Green Web Foundation as "green" data center (https://www.thegreenwebfoundation.org).

There are 3 different states:
- green: the data center is known as green data center by GWF
- red: the data center is not listed as green data center by GWF
- grey: eco₂rd does not have yet information about the data center.


---------------------------------------------------------------------
Historical data
---------------------------------------------------------------------
eco₂rd currently has 3 different time scopes that you can switch through when analysing your consumption:
Today - it shows the consumption and CO₂eq of today
This month - it shows the consumption and CO₂eq of the current month
Historical - it shows the consumption and CO₂eq that your browsing behaviour caused since the start of the extension over the months and years. This feature got introduced with version 0.1.4 (end of June).

You then have different ways to check out the different websites you visited in terms of the traffic they produced via clicking on the a field in the pie charts: 


---------------------------------------------------------------------
Traffic chart
---------------------------------------------------------------------
- "example.com": you will see a detail page of the selected domain
- "Others": you will see a list containing all the other websites you visited in the selected time scope. From there, you can then visit the detail pages, too.


---------------------------------------------------------------------
Data center chart
---------------------------------------------------------------------
- "green": Clicking on this field will give you a list of all websites you visited that are hosted on a green data center declared by GWF
- "grey": Clicking on this field will give you a list of all websites you visited thats data center is not listed as "green" data center by GWF


---------------------------------------------------------------------
Feedback?
---------------------------------------------------------------------
Feel free to let me know about any bugs or ideas for improvements - ideally via email or directly via github.


---------------------------------------------------------------------
Further information
---------------------------------------------------------------------
All further information and explanation can be found via https://ecord.info

The code is open source and can be found via
https://github.com/grenzbotin/eco2rd                    

Основная информация о расширении

Название eco₂rd eco₂rd
ID abgangmjmkjbpimkgnlbbhkellcekegj
Официальный URL https://chromewebstore.google.com/detail/eco%E2%82%82rd/abgangmjmkjbpimkgnlbbhkellcekegj
Описание CO₂eq footprint for your browser based data consumption
Размер файла 346 KB
Количество установок 39
Текущая Версия 0.1.5
Последнее Обновление 2022-06-27
Дата публикации 2021-11-11
Рейтинг 5.00/5 Всего 2 оценок
Разработчик eco2rd
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://ecord.info
URL страницы помощи https://github.com/grenzbotin/eco2rd
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "eco\u2082rd",
    "description": "CO\u2082eq footprint for your browser based data consumption",
    "host_permissions": [
        ""
    ],
    "permissions": [
        "scripting",
        "storage",
        "unlimitedStorage",
        "webRequest",
        "activeTab",
        "alarms"
    ],
    "background": {
        "service_worker": ".\/background.js"
    },
    "action": {
        "browser_style": true,
        "default_popup": "index.html",
        "default_icon": {
            "48": "\/images\/logo48.png"
        }
    },
    "icons": {
        "16": "\/images\/logo16.png",
        "32": "\/images\/logo32.png",
        "48": "\/images\/logo48.png",
        "128": "\/images\/logo128.png",
        "512": "\/images\/logo512.png"
    },
    "version": "0.1.5",
    "manifest_version": 3
}