Calendar Dots
Change Dot Color to Reflect Event Tag Color
Calendar Dots란 무엇입니까?
Calendar Dots은(는) afree1423에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Change Dot Color to Reflect Event Tag Color"입니다.
확장 프로그램 스크린샷
Calendar Dots 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Google calendar now shows event names in the color of the calendar. This extension uses the new dots next to the event to show whatever color you select for each event (use green to mark as completed, etc). Developed by Addison Freeman (addisonfreeman.com) Sponsored by moveON Moving (https://www.moveonmoving.com) MIT license, source here: https://github.com/AddisonFreeman/Google-Calendar-Dot-Color-Fix
확장 프로그램 기본 정보
이름 | Calendar Dots |
ID | idkiplkpioepnfaifnnlknbnafkhcine |
공식 URL | https://chromewebstore.google.com/detail/calendar-dots/idkiplkpioepnfaifnnlknbnafkhcine |
설명 | Change Dot Color to Reflect Event Tag Color |
파일 크기 | 69.3 KB |
설치 횟수 | 89 |
현재 버전 | 0.6 |
최근 업데이트 | 2019-12-10 |
출시 날짜 | 2019-12-10 |
개발자 | afree1423 |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Calendar Dots", "description": "Change Dot Color to Reflect Event Tag Color", "version": "0.6", "icons": { "16": "img\/icon16.png", "19": "img\/icon19.png", "48": "img\/icon48.png", "128": "img\/icon128.png" }, "options_page": "options.html", "content_scripts": [ { "matches": [ "https:\/\/calendar.google.com\/*" ], "js": [ "\/lib\/jquery.js", "js\/content.js" ], "css": [ "content.css" ] } ], "background": { "scripts": [ "js\/background.js" ] }, "browser_action": { "default_icon": "img\/icon128.png" }, "permissions": [ "activeTab", "tabs", "https:\/\/ajax.googleapis.com\/" ] } |