Gradient Merge for Google Calendar™ Events
Take your duplicate Google Calendar events and merge them into one event.
Co to jest Gradient Merge for Google Calendar™ Events?
Gradient Merge for Google Calendar™ Events to rozszerzenie Chrome opracowane przez kgrjng, a jego główną funkcją jest „Take your duplicate Google Calendar events and merge them into one event.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Gradient Merge for Google Calendar™ Events
Pobierz pliki rozszerzeń Gradient Merge for Google Calendar™ Events w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | jcgbfnkjigkdllodnaecmdipcojhopfc |
| Oficjalny URL | https://chromewebstore.google.com/detail/gradient-merge-for-google/jcgbfnkjigkdllodnaecmdipcojhopfc |
| Opis | Take your duplicate Google Calendar events and merge them into one event. |
| Rozmiar pliku | 317 KB |
| Liczba instalacji | 5,101 |
| Aktualna Wersja | 1.0.1 |
| Ostatnia Aktualizacja | 2018-10-10 |
| Data Publikacji | 2018-10-09 |
| Ocena | 3.90/5 Łącznie 21 Oceny |
| Deweloper | kgrjng |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/karjna/gradient-gcal-event-merge |
| Obsługiwane Języki | 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
} | |