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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Take your duplicate Google Calendar events and merge them into one event."입니다.

확장 프로그램 스크린샷

screenshot

Gradient Merge for Google Calendar™ Events 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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
}