Google Calendar Color
Adds color to weekends in Google Calendar
Apa itu Google Calendar Color?
Google Calendar Color adalah ekstensi Chrome yang dikembangkan oleh Mai Nakagawa, dan fitur utamanya adalah "Adds color to weekends in Google Calendar".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Google Calendar Color
Unduh file ekstensi Google Calendar Color 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
Colorizes weekends not only in Google Calendar but in Google Tasks. The source code is hosted at https://github.com/mai-nakagawa/google-calendar-color
Informasi Dasar Ekstensi
Nama | |
ID | dgpackgbkgdjgchmdodmaaildnpnbdph |
URL Resmi | https://chrome.google.com/webstore/detail/google-calendar-color/dgpackgbkgdjgchmdodmaaildnpnbdph |
Deskripsi | Adds color to weekends in Google Calendar |
Ukuran File | 35.05 KB |
Jumlah Instalasi | 1,000 |
Versi Saat Ini | 1.2.0 |
Terakhir Diperbarui | 2016-10-03 |
Tanggal Publikasi | 2016-10-03 |
Penilaian | 1.20/5 Total 5 Penilaian |
Pengembang | Mai Nakagawa |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Google Calendar Color", "description": "Adds color to weekends in Google Calendar", "version": "1.2.0", "browser_action": { "default_title": "Edit the color scheme", "default_popup": "html\/popup.html" }, "icons": { "16": "images\/calendar.png", "48": "images\/calendar.png", "128": "images\/calendar.png" }, "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/*" ], "js": [ "js\/content_script.js" ] } ], "background": { "persistent": false, "scripts": [ "js\/background.js" ] }, "permissions": [ "webNavigation", "tabs", "storage", "https:\/\/calendar.google.com\/*", "https:\/\/mail.google.com\/*", "http:\/\/localhost\/*" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "manifest_version": 2 } |