CarbonViz

Your browsing climate impact, made visible.

CarbonViz란 무엇입니까?

CarbonViz은(는) CarbonViz에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Your browsing climate impact, made visible."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

CarbonViz 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        CarbonViz is an extension that makes visible the impact of our digital activities on our energy consumption and associated CO2 emissions. You can visualize live your data consumption and associated co2 emissions in your browser while browsing.

We all consume, day after day, data that transit through the Internet. Accessing this content online seems normal, obvious. But "online" means that this data travels, that it comes from somewhere to our favorite browser. This journey is not easy or free. Dematerialization is very expensive, in terms of resources, infrastructure and ultimately energy costs. 
CarbonViz is tackling this problem by aiming to improve the perception and understanding of digital energy issues. To better represent this information, analogies were chosen in co-creation with concerned users. 

CarbonViz aims to raise awareness of the cost generated by our daily use of the Web.                    

확장 프로그램 기본 정보

이름 CarbonViz CarbonViz
ID lieikallcilhkihohkajnhmhkiipaaaf
공식 URL https://chromewebstore.google.com/detail/carbonviz/lieikallcilhkihohkajnhmhkiipaaaf
설명 Your browsing climate impact, made visible.
파일 크기 7.9 MB
설치 횟수 142
현재 버전 1.0.3
최근 업데이트 2023-09-13
출시 날짜 2021-11-12
평점 5.00/5 총 6 개의 평점
개발자 CarbonViz
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://heig-vd.ch/rad/instituts/mei/projets/carbonviz
지원되는 언어 en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "default_locale": "en",
    "author": "Media Engineering Institute - HEIG-VD",
    "version": "1.0.3",
    "icons": {
        "16": "assets\/icons\/icon16.png",
        "48": "assets\/icons\/icon48.png",
        "128": "assets\/icons\/icon128.png"
    },
    "permissions": [
        "webRequest",
        "storage",
        "alarms",
        "notifications"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background\/background.mjs",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "css": [
                "bundle\/miniviz.css"
            ],
            "js": [
                "content\/miniViz-script.js",
                "content\/miniViz.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "48": "assets\/icons\/icon48.png"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "content\/*",
                "model\/*",
                "assets\/*",
                "bundle\/*",
                "popup\/*"
            ],
            "matches": [
                ""
            ]
        }
    ]
}