Website Footprint

The extension provides a carbon score for the visited websites.

Website Footprintとは何ですか?

Website FootprintはAdvencyによって開発されたChromeの拡張機能で、その主な機能は「The extension provides a carbon score for the visited websites.」です。

拡張機能のスクリーンショット

screenshot

Website Footprint拡張機能のCRXファイルをダウンロード

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
Eメール [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"
            ]
        }
    ]
}