Rainbow.surf for Google Calendar
Merges duplicate Google Calendar events into one rainbow and colors the weekends.
Rainbow.surf for Google Calendarคืออะไร?
Rainbow.surf for Google Calendar เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://coedit.email และคุณลักษณะหลักของมันคือ "Merges duplicate Google Calendar events into one rainbow and colors the weekends."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Rainbow.surf for Google Calendar
ดาวน์โหลดไฟล์ส่วนขยาย Rainbow.surf for Google Calendar ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Free Chrome extension to cut the clutter when families or teams use calendar sharing and the same event appears in the same slot. 📅📅 → 📅 merges duplicate Google Calendar events into one rainbow of the individual calendar colors 🟦 makes weekends great again - with cool blue background colors 🗓 new event box & mini calendar views also get cool blue weekends 💻 does not modify events (only works in your browser) 🚫 doesn't show ads and doesn't send user's data anywhere 🌼 open source: https://github.com/coedit/gcal-rainbow-surf Like it? Please rate it! Do you have ideas for new calendar enhancements or see an issue? Start a discussion: https://github.com/coedit/gcal-rainbow-surf/discussions/categories/ideas Passion project – curated by @ezdub – dedicated to @illstylist With code by @imightbeAmy @karjna @rubenpoppe @msteffen @ezdub art copyright ©2021 @ezdub
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Rainbow.surf for Google Calendar |
ID | bdamkdibjdpgnpfpkbelkdngdcbbaeog |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/rainbowsurf-for-google-ca/bdamkdibjdpgnpfpkbelkdngdcbbaeog |
คำอธิบาย | Merges duplicate Google Calendar events into one rainbow and colors the weekends. |
ขนาดไฟล์ | 2.53 MB |
จำนวนการติดตั้ง | 745 |
เวอร์ชันปัจจุบัน | 2.1.1 |
อัปเดตครั้งล่าสุด | 2022-02-12 |
วันที่เผยแพร่ | 2021-09-11 |
คะแนน | 5.00/5 รวมทั้งหมด 6 คะแนน |
ผู้พัฒนา | https://coedit.email |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://rainbow.surf/ |
URL หน้าช่วยเหลือ | https://github.com/coedit/gcal-rainbow-surf/discussions/categories/q-a |
URL หน้านโยบายความเป็นส่วนตัว | https://coedit.email/privacy |
ภาษาที่รองรับ | en,fr,es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "short_name": "rainbow.surf", "description": "__MSG_appDesc__", "default_locale": "en", "version": "2.1.1", "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/calendar\/*" ], "js": [ "events.user.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "browser-polyfill.js", "background.js" ] }, "permissions": [ "https:\/\/calendar.google.com\/*" ], "icons": { "128": "images\/Rainbow.surf-icon-128.png", "256": "images\/Rainbow.surf-icon-256.png", "32": "images\/Rainbow.surf-icon-32.png", "48": "images\/Rainbow.surf-icon-48.png", "64": "images\/Rainbow.surf-icon-64.png" }, "content_security_policy": "default-src 'self'", "manifest_version": 2 } |