Kalendario for Google Calendar™

Shows event descriptions in Google Calendar™.

Cos'è Kalendario for Google Calendar™?

Kalendario for Google Calendar™ è un'estensione di Chrome sviluppata da https://kalendario.org, e la sua funzione principale è "Shows event descriptions in Google Calendar™.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Kalendario for Google Calendar™

Scarica i file di estensione Kalendario for Google Calendar™ in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Kalendario enhances the functionality of Google Calendar by displaying descriptions under events in the agenda and search pages.

This simplifies the work with the application - you don't have to click the specific event to show its description. Great for keeping a workout log, a daily journal or weekly/monthly/quarterly reviews.

- 📅 shows event descriptions in agenda view
- 📆 shows event descriptions in search view
- ✔️ works in Chrome, Opera, Vivaldi, Brave, ...
- 🚫 no ads or tracking                    

Informazioni di Base sull'Estensione

Nome Kalendario for Google Calendar™ Kalendario for Google Calendar™
ID ccoehijdbponhcemihobmdpaeenmgchg
URL Ufficiale https://chromewebstore.google.com/detail/kalendario-for-google-cal/ccoehijdbponhcemihobmdpaeenmgchg
Descrizione Shows event descriptions in Google Calendar™.
Dimensione del File 37.28 KB
Conteggio Installazioni 679
Versione Corrente 0.3.3
Ultimo Aggiornamento 2022-04-25
Data di Pubblicazione 2020-04-10
Valutazione 3.67/5 Totale 3 Valutazioni
Sviluppatore https://kalendario.org
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://kalendario.org
URL della Pagina di Aiuto https://github.com/crazko/kalendario/issues
Lingue Supportate en,sk
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extName__",
    "short_name": "__MSG_extShortName__",
    "description": "__MSG_extDesc__",
    "version": "0.3.3",
    "homepage_url": "https:\/\/kalendario.org",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "identity",
        "https:\/\/www.googleapis.com\/*",
        "https:\/\/accounts.google.com\/*"
    ],
    "oauth2": {
        "client_id": "420802057769-b3e2d1ddmo9hgpakme96972unemp2cj4.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/calendar.readonly"
        ]
    }
}