Custom Calendar Background

Adds background images to Google Calendar

什么是Custom Calendar Background?

Custom Calendar Background是由https://useit.today开发的Chrome扩展程序,该扩展的主要功能是“Adds background images to Google Calendar”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Custom Calendar Background扩展crx文件

下载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": []
}