Custom Calendar Background

Adds background images to Google Calendar

Custom Calendar Backgroundคืออะไร?

Custom Calendar Background เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://useit.today และคุณลักษณะหลักของมันคือ "Adds background images to Google Calendar"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Custom Calendar Background

ดาวน์โหลดไฟล์ส่วนขยาย 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": []
}