Flight CO2 emissions

Displays CO2 emissions from goclimateneutral.org on Google Flights.

Flight CO2 emissions란 무엇입니까?

Flight CO2 emissions은(는) albatross.emissions에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displays CO2 emissions from goclimateneutral.org on Google Flights."입니다.

확장 프로그램 스크린샷

screenshot

Flight CO2 emissions 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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!                    

확장 프로그램 기본 정보

이름 Flight CO2 emissions Flight CO2 emissions
ID dmcojaffchhlalnopfdofepbiceojhpc
공식 URL https://chrome.google.com/webstore/detail/flight-co2-emissions/dmcojaffchhlalnopfdofepbiceojhpc
설명 Displays CO2 emissions from goclimateneutral.org on Google Flights.
파일 크기 55.38 KB
설치 횟수 28
현재 버전 0.1.2.1
최근 업데이트 2020-02-01
출시 날짜 2020-02-01
평점 5.00/5 총 2 개의 평점
개발자 albatross.emissions
이메일 [email protected]
결제 유형 free
지원되는 언어 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"
    }
}