Custom Calendar Background

Adds background images to Google Calendar

Co je Custom Calendar Background?

Custom Calendar Background je rozšíření Chrome vyvinuté https://useit.today, a jeho hlavní funkcí je „Adds background images to Google Calendar“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Custom Calendar Background

Stáhněte si soubory rozšíření Custom Calendar Background ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Custom Calendar Background Custom Calendar Background
ID acjecbgflnhmeldadcbblhfdimhifpki
Oficiální URL https://chromewebstore.google.com/detail/custom-calendar-backgroun/acjecbgflnhmeldadcbblhfdimhifpki
Popis Adds background images to Google Calendar
Velikost souboru 42 KB
Počet instalací 91,791
Aktuální Verze 2.0.7
Poslední Aktualizace 2024-02-27
Datum Vydání 2019-01-02
Hodnocení 3.71/5 Celkem 94 Hodnocení
Vývojář https://useit.today
E-mail [email protected]
Typ Platby in_app
Webové stránky Rozšíření https://github.com/padster/CalendarThemeExtension
URL Stránky Nápovědy https://calendar.useit.today/help
URL Stránky Zásad Ochrany Soukromí https://calendar.useit.today/legal
Podporované Jazyky 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": []
}