Custom Calendar Background

Adds background images to Google Calendar

Custom Calendar Background là gì?

Custom Calendar Background là một tiện ích mở rộng Chrome được phát triển bởi https://useit.today, và tính năng chính của nó là "Adds background images to Google Calendar".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Custom Calendar Background

Tải xuống các tệp mở rộng Custom Calendar Background dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Custom Calendar Background Custom Calendar Background
ID acjecbgflnhmeldadcbblhfdimhifpki
URL Chính Thức https://chromewebstore.google.com/detail/custom-calendar-backgroun/acjecbgflnhmeldadcbblhfdimhifpki
Mô tả Adds background images to Google Calendar
Kích Thước Tệp 42 KB
Số Lần Cài Đặt 91,791
Phiên Bản Hiện Tại 2.0.7
Cập Nhật Lần Cuối 2024-02-27
Ngày Phát Hành 2019-01-02
Đánh Giá 3.71/5 Tổng số 94 Đánh Giá
Nhà Phát Triển https://useit.today
Email [email protected]
Loại Thanh Toán in_app
Trang Web Mở Rộng https://github.com/padster/CalendarThemeExtension
URL Trang Trợ Giúp https://calendar.useit.today/help
URL Trang Chính Sách Bảo Mật https://calendar.useit.today/legal
Ngôn Ngữ Được Hỗ Trợ 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": []
}