Website Footprint

The extension provides a carbon score for the visited websites.

Website Footprintคืออะไร?

Website Footprint เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Advency และคุณลักษณะหลักของมันคือ "The extension provides a carbon score for the visited websites."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Website Footprint

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
            ]
        }
    ]
}