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
官方網址 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": []
}