Custom Calendar Background

Adds background images to Google Calendar

Hvad er Custom Calendar Background?

Custom Calendar Background er en Chrome-udvidelse udviklet af https://useit.today, og dens hovedfunktion er "Adds background images to Google Calendar".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot

Download Custom Calendar Background-udvidelses-CRX-fil

Download Custom Calendar Background-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Custom Calendar Background Custom Calendar Background
ID acjecbgflnhmeldadcbblhfdimhifpki
Officiel URL https://chromewebstore.google.com/detail/custom-calendar-backgroun/acjecbgflnhmeldadcbblhfdimhifpki
Beskrivelse Adds background images to Google Calendar
Filstørrelse 42 KB
Antal Installationer 91,791
Nuværende Version 2.0.7
Senest Opdateret 2024-02-27
Udgivelsesdato 2019-01-02
Bedømmelse 3.71/5 Samlet 94 Bedømmelser
Udvikler https://useit.today
E-mail [email protected]
Betalingsmetode in_app
Udvidelseswebsted https://github.com/padster/CalendarThemeExtension
Hjælpeside-URL https://calendar.useit.today/help
URL til Fortrolighedspolitik Side https://calendar.useit.today/legal
Understøttede Sprog 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": []
}