Custom Calendar Background

Adds background images to Google Calendar

O que é Custom Calendar Background?

Custom Calendar Background é uma extensão do Chrome desenvolvida por https://useit.today, e sua principal característica é "Adds background images to Google Calendar".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Custom Calendar Background

Baixe arquivos de extensão Custom Calendar Background no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Custom Calendar Background Custom Calendar Background
ID acjecbgflnhmeldadcbblhfdimhifpki
URL Oficial https://chromewebstore.google.com/detail/custom-calendar-backgroun/acjecbgflnhmeldadcbblhfdimhifpki
Descrição Adds background images to Google Calendar
Tamanho do Arquivo 42 KB
Contagem de Instalações 91,791
Versão Atual 2.0.7
Última Atualização 2024-02-27
Data de Publicação 2019-01-02
Classificação 3.71/5 Total de 94 Avaliações
Desenvolvedor https://useit.today
Email [email protected]
Tipo de Pagamento in_app
Site da Extensão https://github.com/padster/CalendarThemeExtension
URL da Página de Ajuda https://calendar.useit.today/help
URL da Página de Política de Privacidade https://calendar.useit.today/legal
Idiomas Suportados 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": []
}