Google Calendar Time Spent

Displays time spent on each of your Google Calendar colors!

Co to jest Google Calendar Time Spent?

Google Calendar Time Spent to rozszerzenie Chrome opracowane przez zawadzki.louis, a jego główną funkcją jest „Displays time spent on each of your Google Calendar colors!”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Google Calendar Time Spent

Pobierz pliki rozszerzeń Google Calendar Time Spent 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

                        This extension allows you to display the amount of time for each colour of your google calendar.
It allows you to know how much time you have (or will) spend each week on each one of your categories.

N.B. : 
* time slots that are not multiples of 15 minutes (e.g. 20 minutes, 55 minutes) might not be accounted correctly
* meetings that are not accepted are counted in the "white" category.                    

Podstawowe informacje o rozszerzeniu

Nazwa Google Calendar Time Spent Google Calendar Time Spent
ID cfodljgdikllebejmhoifnmmcbfmamij
Oficjalny URL https://chromewebstore.google.com/detail/google-calendar-time-spen/cfodljgdikllebejmhoifnmmcbfmamij
Opis Displays time spent on each of your Google Calendar colors!
Rozmiar pliku 11.46 KB
Liczba instalacji 2,679
Aktualna Wersja 1.6
Ostatnia Aktualizacja 2021-11-12
Data Publikacji 2020-05-29
Ocena 4.30/5 Łącznie 20 Oceny
Deweloper zawadzki.louis
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/bamlab/google-calendar-counter
Adres URL Strony Pomocy https://github.com/bamlab/google-calendar-counter/issues
Obsługiwane Języki en,fr
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.6",
    "default_locale": "en",
    "name": "__MSG_appName__",
    "description": "__MSG_appDesc__",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "index.js"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 2
}