Custom Calendar Background

Adds background images to Google Calendar

Что такое Custom Calendar Background?

Custom Calendar Background - это расширение Chrome, разработанное https://useit.today, и его основная функция - "Adds background images to Google Calendar".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Custom Calendar Background

Скачайте файлы расширений Custom Calendar Background в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Custom Calendar Background Custom Calendar Background
ID acjecbgflnhmeldadcbblhfdimhifpki
Официальный URL https://chromewebstore.google.com/detail/custom-calendar-backgroun/acjecbgflnhmeldadcbblhfdimhifpki
Описание Adds background images to Google Calendar
Размер файла 42 KB
Количество установок 91,791
Текущая Версия 2.0.7
Последнее Обновление 2024-02-27
Дата публикации 2019-01-02
Рейтинг 3.71/5 Всего 94 оценок
Разработчик https://useit.today
Электронная почта [email protected]
Тип оплаты in_app
Официальный сайт расширения https://github.com/padster/CalendarThemeExtension
URL страницы помощи https://calendar.useit.today/help
URL страницы политики конфиденциальности https://calendar.useit.today/legal
Поддерживаемые языки 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": []
}