CO2 checker

This extension will calculate your co2 emissions

什麼是CO2 checker?

CO2 checker是由stephanie.m.hutson開發的Chrome擴展程式,該擴展的主要功能是“This extension will calculate your co2 emissions”。

下載CO2 checker擴展crx文件

下載CO2 checker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        This chrome extension works with google maps to tell you your estimated CO2 emissions for your journey based on the type of vehicle you use and the length of your trip.                    

擴展基本資訊

名稱 CO2 checker CO2 checker
ID cdkdjcogbiecabbgcmhohfnakbojhopi
官方網址 https://chrome.google.com/webstore/detail/co2-checker/cdkdjcogbiecabbgcmhohfnakbojhopi
簡介 This extension will calculate your co2 emissions
檔案大小 1.07 MB
安裝次數 15
目前版本 1.0
更新時間 2015-10-25
上架時間 2015-10-25
評分 5.00/5 共 2 次評分
開發者 stephanie.m.hutson
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CO2 checker",
    "description": "This extension will calculate your co2 emissions",
    "version": "1.0",
    "icons": {
        "16": "imgs\/logo.svg",
        "48": "imgs\/logo.svg",
        "128": "imgs\/logo.svg"
    },
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "calculate.js"
            ],
            "css": [
                "extension.css"
            ],
            "matches": [
                "http:\/\/www.google.com\/maps\/*",
                "https:\/\/www.google.com\/maps\/*",
                "http:\/\/maps.google.com\/*",
                "https:\/\/maps.google.com\/*"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "pageCapture"
    ]
}