Klima: Your online carbon footprint

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

Co to jest Klima: Your online carbon footprint?

Klima: Your online carbon footprint to rozszerzenie Chrome opracowane przez @kennethlarsen, a jego główną funkcją jest „An extension that will track your carbon footprint when using Google Search or watching videos on YouTube.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Klima: Your online carbon footprint

Pobierz pliki rozszerzeń Klima: Your online carbon footprint w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Klima: Your online carbon footprint Klima: Your online carbon footprint
ID ehofddgcnmijknefgjnldeimlgklaeoa
Oficjalny URL https://chrome.google.com/webstore/detail/klima-your-online-carbon/ehofddgcnmijknefgjnldeimlgklaeoa
Opis An extension that will track your carbon footprint when using Google Search or watching videos on YouTube.
Rozmiar pliku 24.02 KB
Liczba instalacji 35
Aktualna Wersja 1.0.2
Ostatnia Aktualizacja 2019-10-10
Data Publikacji 2019-10-10
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper @kennethlarsen
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://github.com/kennethlarsen/Sessionslogning-simulator
Obsługiwane Języki 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"
            ]
        }
    ]
}