Google Calendar Color

Adds color to weekends in Google Calendar

Google Calendar Color란 무엇입니까?

Google Calendar Color은(는) Mai Nakagawa에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds color to weekends in Google Calendar"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Google Calendar Color 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Colorizes weekends not only in Google Calendar but in Google Tasks. The source code is hosted at https://github.com/mai-nakagawa/google-calendar-color                    

확장 프로그램 기본 정보

이름 Google Calendar Color Google Calendar Color
ID dgpackgbkgdjgchmdodmaaildnpnbdph
공식 URL https://chrome.google.com/webstore/detail/google-calendar-color/dgpackgbkgdjgchmdodmaaildnpnbdph
설명 Adds color to weekends in Google Calendar
파일 크기 35.05 KB
설치 횟수 1,000
현재 버전 1.2.0
최근 업데이트 2016-10-03
출시 날짜 2016-10-03
평점 1.20/5 총 5 개의 평점
개발자 Mai Nakagawa
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Calendar Color",
    "description": "Adds color to weekends in Google Calendar",
    "version": "1.2.0",
    "browser_action": {
        "default_title": "Edit the color scheme",
        "default_popup": "html\/popup.html"
    },
    "icons": {
        "16": "images\/calendar.png",
        "48": "images\/calendar.png",
        "128": "images\/calendar.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/calendar.google.com\/*"
            ],
            "js": [
                "js\/content_script.js"
            ]
        }
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "js\/background.js"
        ]
    },
    "permissions": [
        "webNavigation",
        "tabs",
        "storage",
        "https:\/\/calendar.google.com\/*",
        "https:\/\/mail.google.com\/*",
        "http:\/\/localhost\/*"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "manifest_version": 2
}