Klima: Your online carbon footprint

An extension that will track your carbon footprint when using Google Search or watching videos on YouTube.

Что такое Klima: Your online carbon footprint?

Klima: Your online carbon footprint - это расширение Chrome, разработанное @kennethlarsen, и его основная функция - "An extension that will track your carbon footprint when using Google Search or watching videos on YouTube.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Klima: Your online carbon footprint

Скачайте файлы расширений Klima: Your online carbon footprint в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        An extension that will track your carbon footprint when using Google Search or watching videos on YouTube.                    

Основная информация о расширении

Название Klima: Your online carbon footprint Klima: Your online carbon footprint
ID ehofddgcnmijknefgjnldeimlgklaeoa
Официальный URL https://chrome.google.com/webstore/detail/klima-your-online-carbon/ehofddgcnmijknefgjnldeimlgklaeoa
Описание An extension that will track your carbon footprint when using Google Search or watching videos on YouTube.
Размер файла 24.02 KB
Количество установок 35
Текущая Версия 1.0.2
Последнее Обновление 2019-10-10
Дата публикации 2019-10-10
Рейтинг 5.00/5 Всего 1 оценок
Разработчик @kennethlarsen
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://github.com/kennethlarsen/Sessionslogning-simulator
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Klima: Your online carbon footprint",
    "version": "1.0.2",
    "manifest_version": 2,
    "description": "An extension that will track your carbon footprint when using Google Search or watching videos on YouTube.",
    "homepage_url": "http:\/\/kennethlarsen.org\/klima",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "browser action demo",
        "default_popup": "src\/browser_action\/browser_action.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "include_globs": [
                "*:\/\/*.google.*\/*",
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ],
            "css": [
                "css\/style.css"
            ]
        }
    ]
}