Gradient Merge for Google Calendar™ Events
Take your duplicate Google Calendar events and merge them into one event.
Gradient Merge for Google Calendar™ Eventsคืออะไร?
Gradient Merge for Google Calendar™ Events เป็นส่วนขยายของ Chrome ที่พัฒนาโดย kgrjng และคุณลักษณะหลักของมันคือ "Take your duplicate Google Calendar events and merge them into one event."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Gradient Merge for Google Calendar™ Events
ดาวน์โหลดไฟล์ส่วนขยาย Gradient Merge for Google Calendar™ Events ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This Chrome extension also uses the user defined colors of each calendar to create a beautiful gradient for each event. After installed, click on the plugin to activate then refresh Google Calendar to see your new cleaned up Google Calendar. Modified from: https://chrome.google.com/webstore/detail/event-merge-for-google-ca/idehaflielbgpaokehlhidbjlehlfcep Repo at: https://github.com/karjna/gradient-gcal-event-merge
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Gradient Merge for Google Calendar™ Events |
ID | jcgbfnkjigkdllodnaecmdipcojhopfc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/gradient-merge-for-google/jcgbfnkjigkdllodnaecmdipcojhopfc |
คำอธิบาย | Take your duplicate Google Calendar events and merge them into one event. |
ขนาดไฟล์ | 317 KB |
จำนวนการติดตั้ง | 5,101 |
เวอร์ชันปัจจุบัน | 1.0.1 |
อัปเดตครั้งล่าสุด | 2018-10-10 |
วันที่เผยแพร่ | 2018-10-09 |
คะแนน | 3.90/5 รวมทั้งหมด 21 คะแนน |
ผู้พัฒนา | kgrjng |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/karjna/gradient-gcal-event-merge |
ภาษาที่รองรับ | en,fr,es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "short_name": "Gradient Merge", "description": "__MSG_appDesc__", "default_locale": "en", "version": "1.0.1", "content_scripts": [ { "matches": [ "https:\/\/www.google.com\/calendar\/*", "https:\/\/calendar.google.com\/calendar\/*" ], "js": [ "events.user.js" ], "run_at": "document_end" } ], "permissions": [ "https:\/\/www.google.com\/calendar\/*", "https:\/\/calendar.google.com\/*", "storage" ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_title": "Toggle" }, "icons": { "48": "icon.png" }, "manifest_version": 2 } |