Flight CO2 emissions

Displays CO2 emissions from goclimateneutral.org on Google Flights.

Flight CO2 emissions là gì?

Flight CO2 emissions là một tiện ích mở rộng Chrome được phát triển bởi albatross.emissions, và tính năng chính của nó là "Displays CO2 emissions from goclimateneutral.org on Google Flights.".

Ả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 Flight CO2 emissions

Tải xuống các tệp mở rộng Flight CO2 emissions 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

                        Displays CO2 emissions on top of the Google Flights website, with the option of buying carbon offsets.

For anyone that travels a lot by plane, the emissions from their flights is likely to be the biggest part of their CO2 footprint. It's always better to avoid a flight when possible, but this tool can help you make better decisions in the cases where you still decide to travel.

Carbon offsets aim to reduce or remove an equivalent amount of greenhouse gases by other means. While this is not as reliable as not emitting greenhouse gases in the first place, it's a good option to buy carbon offsets when it's not possible to reduce your own emissions.

The data displayed in this extension comes from https://www.goclimateneutral.org/ - no affiliation, we just think they provide a good service.
For more information on how GoClimateNeutral calculates the CO2 footprint of your flight, see https://www.goclimateneutral.org/blog/wp-content/uploads/2019/04/Calculations-in-GoClimateNeutral-Flight-Footprint-API.pdf .

We do not make any money off this service - we just hope to help the planet!                    

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

Tên Flight CO2 emissions Flight CO2 emissions
ID dmcojaffchhlalnopfdofepbiceojhpc
URL Chính Thức https://chrome.google.com/webstore/detail/flight-co2-emissions/dmcojaffchhlalnopfdofepbiceojhpc
Mô tả Displays CO2 emissions from goclimateneutral.org on Google Flights.
Kích Thước Tệp 55.38 KB
Số Lần Cài Đặt 28
Phiên Bản Hiện Tại 0.1.2.1
Cập Nhật Lần Cuối 2020-02-01
Ngày Phát Hành 2020-02-01
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển albatross.emissions
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Flight CO2 emissions",
    "description": "Displays CO2 emissions from goclimateneutral.org on Google Flights.",
    "version": "0.1.2.1",
    "permissions": [
        "background",
        "https:\/\/api.goclimateneutral.org\/*",
        "https:\/\/flight-emissions.appspot.com\/flight_footprint"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.google.com\/flights*"
            ],
            "js": [
                "content.js",
                "details.js",
                "humanize-duration.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "icons\/small_tree.png",
        "icons\/carbonoffset.png"
    ],
    "page_action": {
        "default_icon": {
            "32": "icons\/flights_32.png",
            "48": "icons\/flights_48.png",
            "128": "icons\/flights_128.png"
        }
    },
    "icons": {
        "32": "icons\/flights_32.png",
        "48": "icons\/flights_48.png",
        "128": "icons\/flights_128.png"
    }
}