Custom Calendar Background

Adds background images to Google Calendar

Was ist Custom Calendar Background?

Custom Calendar Background ist eine Chrome-Erweiterung, die von https://useit.today entwickelt wurde, und ihr Hauptmerkmal ist "Adds background images to Google Calendar".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Custom Calendar Background-Erweiterungs-CRX-Datei herunterladen

Laden Sie Custom Calendar Background-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Custom Calendar Background Custom Calendar Background
ID acjecbgflnhmeldadcbblhfdimhifpki
Offizielle URL https://chromewebstore.google.com/detail/custom-calendar-backgroun/acjecbgflnhmeldadcbblhfdimhifpki
Beschreibung Adds background images to Google Calendar
Dateigröße 42 KB
Installationsanzahl 91,791
Aktuelle Version 2.0.7
Letztes Update 2024-02-27
Veröffentlichungsdatum 2019-01-02
Bewertung 3.71/5 Insgesamt 94 Bewertungen
Entwickler https://useit.today
E-Mail [email protected]
Zahlungsart in_app
Erweiterungswebsite https://github.com/padster/CalendarThemeExtension
Hilfeseite URL https://calendar.useit.today/help
URL der Datenschutzrichtlinien-Seite https://calendar.useit.today/legal
Unterstützte Sprachen 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": []
}