Custom Calendar Background

Adds background images to Google Calendar

Qu'est-ce que Custom Calendar Background ?

Custom Calendar Background est une extension Chrome développée par https://useit.today, et sa fonction principale est "Adds background images to Google Calendar".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Custom Calendar Background

Téléchargez les fichiers d'extension Custom Calendar Background au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Custom Calendar Background Custom Calendar Background
ID acjecbgflnhmeldadcbblhfdimhifpki
URL Officiel https://chromewebstore.google.com/detail/custom-calendar-backgroun/acjecbgflnhmeldadcbblhfdimhifpki
Description Adds background images to Google Calendar
Taille du Fichier 42 KB
Nombre d'Installations 91,791
Version Actuelle 2.0.7
Dernière Mise à Jour 2024-02-27
Date de Publication 2019-01-02
Évaluation 3.71/5 Total 94 Évaluations
Développeur https://useit.today
Email [email protected]
Type de Paiement in_app
Site Web de l'Extension https://github.com/padster/CalendarThemeExtension
URL de la Page d'Aide https://calendar.useit.today/help
URL de la Page de Politique de Confidentialité https://calendar.useit.today/legal
Langues Prises en Charge 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": []
}