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是由https://coedit.email開發的Chrome擴展程式,該擴展的主要功能是“Merges duplicate Google Calendar events into one rainbow and colors the weekends.”。
擴展截圖
下載Rainbow.surf for Google Calendar擴展crx文件
下載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 擴展基本資訊
| 名稱 | |
| ID | bdamkdibjdpgnpfpkbelkdngdcbbaeog |
| 官方網址 | 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
} | |