Custom Calendar Background

Adds background images to Google Calendar

Co to jest Custom Calendar Background?

Custom Calendar Background to rozszerzenie Chrome opracowane przez https://useit.today, a jego główną funkcją jest „Adds background images to Google Calendar”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Custom Calendar Background

Pobierz pliki rozszerzeń Custom Calendar Background w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Custom Calendar Background Custom Calendar Background
ID acjecbgflnhmeldadcbblhfdimhifpki
Oficjalny URL https://chromewebstore.google.com/detail/custom-calendar-backgroun/acjecbgflnhmeldadcbblhfdimhifpki
Opis Adds background images to Google Calendar
Rozmiar pliku 42 KB
Liczba instalacji 91,791
Aktualna Wersja 2.0.7
Ostatnia Aktualizacja 2024-02-27
Data Publikacji 2019-01-02
Ocena 3.71/5 Łącznie 94 Oceny
Deweloper https://useit.today
E-mail [email protected]
Typ Płatności in_app
Strona Rozszerzenia https://github.com/padster/CalendarThemeExtension
Adres URL Strony Pomocy https://calendar.useit.today/help
Adres URL Strony Polityki Prywatności https://calendar.useit.today/legal
Obsługiwane Języki 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": []
}