Event Merge for Google Calendar™
Chrome extension that visually merges the same event on multiple Google Calendars into one event.
Event Merge for Google Calendar™ क्या है?
Event Merge for Google Calendar™ Amy Ciavolino द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Chrome extension that visually merges the same event on multiple Google Calendars into one event."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Event Merge for Google Calendar™ एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
When using Google Calendar™ you may have one event on multiple calendars. For instance on your work and personal calendar, on your work calendar and your team's shared calendar, or on many co-work's calendars. These can clutter up your calendar and make it hard to read. This extension merges all those separate events into one event, and gives it strips with all the individual calendars' colors. Report bugs here: https://github.com/imightbeamy/gcal-multical-event-merge/issues Code on github: https://github.com/imightbeamy/gcal-multical-event-merge Google Calendar™ is a trademark of Google Inc. Use of this trademark is subject to Google Permissions.
एक्सटेंशन की मूल जानकारी
नाम | Event Merge for Google Calendar™ |
ID | idehaflielbgpaokehlhidbjlehlfcep |
आधिकारिक URL | https://chromewebstore.google.com/detail/event-merge-for-google-ca/idehaflielbgpaokehlhidbjlehlfcep |
विवरण | Chrome extension that visually merges the same event on multiple Google Calendars into one event. |
फ़ाइल का आकार | 147 KB |
स्थापना संख्या | 73,505 |
वर्तमान संस्करण | 2.2.1 |
अंतिम अपडेट | 2019-07-01 |
प्रकाशन तिथि | 2019-07-01 |
रेटिंग | 4.21/5 कुल 210 रेटिंग्स |
डेवलपर | Amy Ciavolino |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://amy.tech/ |
सहायता पृष्ठ URL | https://github.com/imightbeamy/gcal-multical-event-merge/issues |
समर्थित भाषाएँ | en,fr,es |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "description": "__MSG_appDesc__", "default_locale": "en", "version": "2.2.1", "content_scripts": [ { "matches": [ "https:\/\/www.google.com\/calendar\/*", "https:\/\/calendar.google.com\/calendar\/*" ], "js": [ "chroma.min.js", "events.user.js" ], "run_at": "document_end", "all_frames": true } ], "permissions": [ "https:\/\/www.google.com\/calendar\/*", "https:\/\/calendar.google.com\/*", "storage" ], "background": { "scripts": [ "background.js" ] }, "browser_action": { "default_title": "Toggle" }, "icons": { "48": "icon.png" }, "content_security_policy": "default-src 'self'", "manifest_version": 2 } |