Custom Calendar Background

Adds background images to Google Calendar

Vad är Custom Calendar Background?

Custom Calendar Background är en Chrome-tillägg utvecklad av https://useit.today, och dess huvudfunktion är "Adds background images to Google Calendar".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Custom Calendar Background-förlängningens CRX-fil

Ladda ner Custom Calendar Background-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn Custom Calendar Background Custom Calendar Background
ID acjecbgflnhmeldadcbblhfdimhifpki
Officiell webbadress https://chromewebstore.google.com/detail/custom-calendar-backgroun/acjecbgflnhmeldadcbblhfdimhifpki
Beskrivning Adds background images to Google Calendar
Filstorlek 42 KB
Antal Installationer 91,791
Aktuell Version 2.0.7
Senast Uppdaterad 2024-02-27
Publiceringsdatum 2019-01-02
Betyg 3.71/5 Totalt 94 Betyg
Utvecklare https://useit.today
E-post [email protected]
Betalningssätt in_app
Tilläggswebbplats https://github.com/padster/CalendarThemeExtension
Hjälpsida URL https://calendar.useit.today/help
URL till Sekretesspolicy Sidan https://calendar.useit.today/legal
Stödda Språk 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": []
}