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
Eメール [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": []
}