Custom Calendar Background

Adds background images to Google Calendar

Wat is Custom Calendar Background?

Custom Calendar Background is een Chrome-extensie ontwikkeld door https://useit.today, en de belangrijkste functie is "Adds background images to Google Calendar".

Extensie Screenshots

screenshot
screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Custom Calendar Background

Download Custom Calendar Background-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Custom Calendar Background Custom Calendar Background
ID acjecbgflnhmeldadcbblhfdimhifpki
Officiële URL https://chromewebstore.google.com/detail/custom-calendar-backgroun/acjecbgflnhmeldadcbblhfdimhifpki
Beschrijving Adds background images to Google Calendar
Bestandsgrootte 42 KB
Aantal Installaties 91,791
Huidige Versie 2.0.7
Laatst Bijgewerkt 2024-02-27
Publicatiedatum 2019-01-02
Beoordeling 3.71/5 Totaal 94 Beoordelingen
Ontwikkelaar https://useit.today
E-mail [email protected]
Betalingswijze in_app
Extensiewebsite https://github.com/padster/CalendarThemeExtension
Help Pagina-URL https://calendar.useit.today/help
URL van de Privacybeleid Pagina https://calendar.useit.today/legal
Ondersteunde Talen 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": []
}