Google Calendar Gray Weekends

Turn weekend days light gray in Google Calendar

Apa itu Google Calendar Gray Weekends?

Google Calendar Gray Weekends adalah ekstensi Chrome yang dikembangkan oleh msteffen.developer, dan fitur utamanya adalah "Turn weekend days light gray in Google Calendar".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Google Calendar Gray Weekends

Unduh file ekstensi Google Calendar Gray Weekends dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        Sets the background color of weekend days to light gray in Google calendar

Very simple, and currently US/English only (it has "Saturday" and "Sunday" hard-coded). Source is at https://github.com/msteffen/gcal-gray-weekends (you can report bugs as well)                    

Informasi Dasar Ekstensi

Nama Google Calendar Gray Weekends Google Calendar Gray Weekends
ID anbpifeeedchofljolkgmleojmelihom
URL Resmi https://chromewebstore.google.com/detail/google-calendar-gray-week/anbpifeeedchofljolkgmleojmelihom
Deskripsi Turn weekend days light gray in Google Calendar
Ukuran File 6.77 KB
Jumlah Instalasi 2,544
Versi Saat Ini 0.1.1
Terakhir Diperbarui 2019-04-29
Tanggal Publikasi 2019-04-29
Penilaian 4.61/5 Total 18 Penilaian
Pengembang msteffen.developer
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/msteffen/gcal-gray-weekends
Bahasa yang Didukung en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Google Calendar Gray Weekends",
    "version": "0.1.1",
    "description": "Turn weekend days light gray in Google Calendar",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}