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 kgrjng द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Take your duplicate Google Calendar events and merge them into one event."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Gradient Merge for Google Calendar™ Events एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 } |