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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة https://calendar.useit.today/help
عنوان صفحة سياسة الخصوصية 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": []
}