Custom Calendar Background

Adds background images to Google Calendar

Cos'è Custom Calendar Background?

Custom Calendar Background è un'estensione di Chrome sviluppata da https://useit.today, e la sua funzione principale è "Adds background images to Google Calendar".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Custom Calendar Background

Scarica i file di estensione Custom Calendar Background 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

                        Modify the Google Calendar UI to include full-page background images or colors.
Use your own images, or purchase from sets of provided themes.

For support, see: https://github.com/padster/CalendarThemeExtension/issues                    

Informazioni di Base sull'Estensione

Nome Custom Calendar Background Custom Calendar Background
ID acjecbgflnhmeldadcbblhfdimhifpki
URL Ufficiale https://chromewebstore.google.com/detail/custom-calendar-backgroun/acjecbgflnhmeldadcbblhfdimhifpki
Descrizione Adds background images to Google Calendar
Dimensione del File 42 KB
Conteggio Installazioni 91,791
Versione Corrente 2.0.7
Ultimo Aggiornamento 2024-02-27
Data di Pubblicazione 2019-01-02
Valutazione 3.71/5 Totale 94 Valutazioni
Sviluppatore https://useit.today
Email [email protected]
Tipo di Pagamento in_app
Sito Web dell'Estensione https://github.com/padster/CalendarThemeExtension
URL della Pagina di Aiuto https://calendar.useit.today/help
URL della Pagina della Politica sulla Privacy https://calendar.useit.today/legal
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Custom Calendar Background",
    "version": "2.0.7",
    "description": "Adds background images to Google Calendar",
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/calendar\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "style.css"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "identity",
        "identity.email"
    ],
    "options_page": "options.html",
    "web_accessible_resources": [
        {
            "resources": [
                "options.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": []
}